v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-02-1354131442.5 KB
v1
emergency

Activate emergency stop

Immediately activates the emergency stop system to halt all reel motor operations.

When activated, the emergency stop system prevents any motor movement commands from executing, ensuring safe shutdown of reel operations. The system maintains its emergency stop state until explicitly deactivated.

Emergency stop activation is a critical safety operation that takes priority over all other reel functions. Normal reel operations cannot resume until emergency stop is deactivated.

put/api/v1/reel/activate-estop

Response

Successful Response

actionstring required

The action that was requested or performed by the endpoint

errorboolean required

Indicates whether the operation encountered an error

error_msgsstring[]

List of error messages if the operation failed

Example response

{
  "description": "Emergency stop activated successfully",
  "name": "Emergency Stop Activated",
  "value": {
    "action": "REEL_ACTIVATE_ESTOP",
    "error": false,
    "error_msgs": [],
    "result": {
      "is_active": true
    }
  }
}