From 043816d9b7ee504e157be7ac7077257181d1d297 Mon Sep 17 00:00:00 2001 From: HRIStudio Integration Date: Thu, 19 Mar 2026 18:15:26 -0400 Subject: [PATCH] feat: Add wake_up and rest actions --- plugins/nao6-ros2.json | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/plugins/nao6-ros2.json b/plugins/nao6-ros2.json index 44ae44f..77e1853 100755 --- a/plugins/nao6-ros2.json +++ b/plugins/nao6-ros2.json @@ -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" + } + } + } } ] } \ No newline at end of file