protected override void SetCylinders(MomentaryPositionAndTimingFrameDataModel DataFrame)
 {
     MotionHardwareInterface.SetCylinderHeight(1, DataFrame.C1);
     MotionHardwareInterface.SetCylinderHeight(2, DataFrame.C2);
     MotionHardwareInterface.SetCylinderHeight(3, DataFrame.C3);
     //byte test = 0;
     //MotionHardwareInterface.SetCylinderHeight(1, test);
     //MotionHardwareInterface.SetCylinderHeight(2, test);
     //MotionHardwareInterface.SetCylinderHeight(3, test);
 }
Esempio n. 2
0
 protected override void AnimateFame(MomentaryPositionAndTimingFrameDataModel Data)
 {
     MotionHardwareInterface.SetCylinderHeight(1, Data.C1);
     MotionHardwareInterface.SetCylinderHeight(2, Data.C2);
 }
 protected override void SetCylinders()
 {
     MotionHardwareInterface.SetCylinderHeight(1, (byte)Cylinder1);
     MotionHardwareInterface.SetCylinderHeight(2, (byte)Cylinder2);
 }
 protected override void SetCylinders(MomentaryPositionAndTimingFrameDataModel DataFrame)
 {
     MotionHardwareInterface.SetCylinderHeight(1, DataFrame.C1);
 }