v1
reel-movement
Update reel motor speed
Updates the motor speed percentage for ongoing wind or unwind operations while maintaining current direction.
Speed updates allow real-time adjustment of motor velocity without interrupting the current operation. The new speed setting is applied immediately if the motor is currently moving, or stored for the next movement command if the motor is stopped.
This endpoint preserves the current motor direction (wind/unwind) and only modifies the velocity component of the operation.
put/api/v1/reel/speed
Request body
Example request
{
"description": "Full speed motor operation",
"name": "High Speed Operation",
"value": {
"speed": 100
}
}Response
Successful Response
Example response
{
"description": "Motor speed updated during operation",
"name": "Speed Updated",
"value": {
"action": "UPDATE_SPEED",
"error": false,
"error_msgs": [],
"result": {
"speed": 90
}
}
}