| 1234567891011121314151617181920212223 |
- using SHJX.Service.Control.Extends;
- namespace SHJX.Service.Control.Pipeline.Nodes.MoveNodes
- {
- public class AxisMovementByY : INode
- {
- #region Fields
- private static TaskExtend _taskExtend;
- #endregion
- public AxisMovementByY(TaskExtend taskExtend)
- {
- Name = nameof(AxisMovementByY);
- _taskExtend = taskExtend;
- }
- public override INode Invoke()
- {
- bool res = ExecuteCommand.MotorMoveExecute(EquipmentNames.AxisY, CurrentTask);
- return this;
- }
- }
- }
|