run_sequence
Execute a choreographed sequence of motor actions like move, wait, stop, and command to control servomotors. Define ordered steps to perform complex movements and get final motor states.
Instructions
Execute a choreographed sequence of steps, e.g. "draw a square" or "wave".
Each step is one of: {"action": "move_to", "motor": "88", "degrees": 90, "speed_dps": 120} {"action": "move_relative", "motor": "88", "degrees": -30} {"action": "stop"} # motor optional -> all {"action": "wait", "seconds": 0.5} {"action": "command", "motor": "88", "name": "vibrate", "params": [1]}
Steps run in order; "command" runs any raw catalog command by tool name. Returns the final state of every detected motor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes |