| 12345678910111213141516171819202122232425 |
- using SHJX.Service.Control.Extends;
- namespace SHJX.Service.Control.Pipeline.Nodes.MoveNodes
- {
- public class AxisGobackByZ : INode
- {
- #region Fields
- private static TaskExtend _taskExtend;
- #endregion
- public AxisGobackByZ(TaskExtend taskExtend)
- {
- Name = nameof(AxisGobackByZ);
- _taskExtend = taskExtend;
- }
- public override INode Invoke()
- {
- ExecuteCommand.MotorGoBackExecute(EquipmentNames.AxisZ);
- //
-
- return this;
- }
- }
- }
|