v1
reel-movement
Set command lockout status
Enables or disables the command lockout feature to prevent user-initiated movement operations.
When command lockout is enabled, all movement commands (wind, unwind, go-to-position, jog, and speed updates) are blocked and return error responses. Safety features including emergency stop and active braking continue to function normally.
Command lockout provides an additional safety layer during maintenance operations or when the system must remain stationary while other processes are active.
put/api/v1/reel/command-lockout
Request body
Example request
{
"description": "Block all movement commands",
"name": "Enable Lockout",
"value": {
"lockout_enabled": true
}
}Response
Successful Response
Example response
{
"description": "Movement commands now blocked",
"name": "Lockout Enabled",
"value": {
"action": "set_command_lockout",
"error": false,
"error_msgs": [],
"result": {
"lockout_enabled": true
}
}
}