update
This commit is contained in:
@@ -9,7 +9,8 @@ public enum ActionScopes
|
||||
NODE,
|
||||
EDGE,
|
||||
}
|
||||
public class AgvActions
|
||||
|
||||
public class AgvAction
|
||||
{
|
||||
[Required]
|
||||
public string ActionType { get; set; } = string.Empty;
|
||||
|
||||
@@ -8,5 +8,5 @@ public class ProtocolFeatures
|
||||
[Required]
|
||||
public OptionalParameters[] OptionalParameters { get; set; } = [];
|
||||
[Required]
|
||||
public AgvActions[] AgvActions { get; set; } = [];
|
||||
public AgvAction[] AgvActions { get; set; } = [];
|
||||
}
|
||||
|
||||
@@ -2,16 +2,32 @@
|
||||
|
||||
public enum ActionType
|
||||
{
|
||||
START_PAUSE,
|
||||
STOP_PAUSE,
|
||||
START_CHARGING,
|
||||
STOP_CHARGING,
|
||||
INITIALIZATION_POSITION,
|
||||
PICK,
|
||||
DROP,
|
||||
CANCEL_ORDER,
|
||||
ROTATE,
|
||||
REQUEST_FACTSHEET,
|
||||
REQUEST_VISUALIZATION,
|
||||
REQUEST_STATE,
|
||||
}
|
||||
startPause,
|
||||
stopPause,
|
||||
startCharging,
|
||||
stopCharging,
|
||||
initPosition,
|
||||
stateRequest,
|
||||
factsheetRequest,
|
||||
|
||||
logReport,
|
||||
pick,
|
||||
drop,
|
||||
detectObject,
|
||||
finePositioning,
|
||||
waitForTrigger,
|
||||
|
||||
cancelOrder,
|
||||
liftUp,
|
||||
liftDown,
|
||||
liftRotate,
|
||||
rotate,
|
||||
rotateKeepLift,
|
||||
mutedBaseOn,
|
||||
mutedBaseOff,
|
||||
mutedLoadOn,
|
||||
mutedLoadOff,
|
||||
dockTo,
|
||||
moveStraightToCoor,
|
||||
moveStraightWithDistance,
|
||||
}
|
||||
Reference in New Issue
Block a user