feat: Add wake_up and rest actions
Some checks failed
Deploy to GitHub Pages / deploy (push) Failing after 1m1s
Validate Plugins / validate (push) Successful in 9m55s

This commit is contained in:
HRIStudio Integration
2026-03-19 18:15:26 -04:00
parent f83a207b16
commit 043816d9b7

View File

@@ -1127,6 +1127,52 @@
"transformFn": "getRobotInfo"
}
}
},
{
"id": "wake_up",
"name": "Wake Up",
"description": "Initialize robot motors and stand up",
"category": "movement",
"icon": "zap",
"timeout": 15000,
"retryable": true,
"parameterSchema": {
"type": "object",
"properties": {}
},
"ros2": {
"topic": "/dummy",
"messageType": "std_msgs/msg/String",
"payloadMapping": {
"type": "static",
"payload": {
"data": "wake_up"
}
}
}
},
{
"id": "rest",
"name": "Rest",
"description": "Disable motors and sit down safely",
"category": "movement",
"icon": "moon",
"timeout": 15000,
"retryable": true,
"parameterSchema": {
"type": "object",
"properties": {}
},
"ros2": {
"topic": "/dummy",
"messageType": "std_msgs/msg/String",
"payloadMapping": {
"type": "static",
"payload": {
"data": "rest"
}
}
}
}
]
}