control_run
Manage protocol execution on Opentrons Flex and OT-2 robots by controlling runs with actions like play, pause, stop, and resume, using the robot's IP and run ID.
Instructions
Control run execution (play, pause, stop, resume)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform | |
robot_ip | Yes | Robot IP address | |
run_id | Yes | Run ID to control |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform",
"enum": [
"play",
"pause",
"stop",
"resume-from-recovery"
],
"type": "string"
},
"robot_ip": {
"description": "Robot IP address",
"type": "string"
},
"run_id": {
"description": "Run ID to control",
"type": "string"
}
},
"required": [
"robot_ip",
"run_id",
"action"
],
"type": "object"
}