|
@@ -121,7 +121,7 @@ namespace Venus_RT.Devices
|
|
|
_currentOP = OPStep.PickExtend;
|
|
|
_status = RState.Running;
|
|
|
SetRobotMovingInfo(RobotAction.Extending, hand, chamber);
|
|
|
- return _SendCommand($"PICK {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} ENRT");
|
|
|
+ return _SendCommand($"PICK {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} ENRT NR");
|
|
|
}
|
|
|
public bool PickRetract(ModuleName chamber, int slot, Hand hand)
|
|
|
{
|
|
@@ -131,7 +131,7 @@ namespace Venus_RT.Devices
|
|
|
_currentOP = OPStep.PickRetract;
|
|
|
_status = RState.Running;
|
|
|
SetRobotMovingInfo(RobotAction.Retracting, hand, chamber);
|
|
|
- return _SendCommand($"PICK {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} STRT");
|
|
|
+ return _SendCommand($"PICK {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} STRT NR");
|
|
|
}
|
|
|
public bool PlaceExtend(ModuleName chamber, int slot, Hand hand)
|
|
|
{
|
|
@@ -141,7 +141,7 @@ namespace Venus_RT.Devices
|
|
|
_currentOP = OPStep.PlaceExtent;
|
|
|
_status = RState.Running;
|
|
|
SetRobotMovingInfo(RobotAction.Extending, hand, chamber);
|
|
|
- return _SendCommand($"PLACE {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} ENRT");
|
|
|
+ return _SendCommand($"PLACE {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} ENRT NR");
|
|
|
}
|
|
|
public bool PlaceRetract(ModuleName chamber, int slot, Hand hand)
|
|
|
{
|
|
@@ -152,7 +152,7 @@ namespace Venus_RT.Devices
|
|
|
_status = RState.Running;
|
|
|
SetRobotMovingInfo(RobotAction.Retracting, hand, chamber);
|
|
|
|
|
|
- return _SendCommand($"PLACE {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} STRT");
|
|
|
+ return _SendCommand($"PLACE {_StationNumbers[chamber]} SLOT {slot + 1} ARM {Hand2Arm(hand)} STRT NR");
|
|
|
}
|
|
|
public bool Pick(ModuleName station, int slot, Hand hand)
|
|
|
{
|