From 06bdaaefc3732cb2adec0e335cf9f455249fd8c0 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Wed, 1 Apr 2026 16:27:59 -0400 Subject: [PATCH] fix(nao6): use valid animation names for beckon and think - Beckon: use Hello_1 instead of Beckon_1 - Think: use Gesture_You_1 instead of Thinking_1 --- plugins/nao6-ros2.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/nao6-ros2.json b/plugins/nao6-ros2.json index 3074aa3..989c729 100755 --- a/plugins/nao6-ros2.json +++ b/plugins/nao6-ros2.json @@ -1642,10 +1642,10 @@ { "id": "beckon", "name": "Beckon", - "description": "Come here gesture", + "description": "Come here gesture using wave", "category": "movement", "icon": "arrow-right", - "timeout": 2000, + "timeout": 2500, "retryable": true, "parameterSchema": { "type": "object", @@ -1657,7 +1657,7 @@ "payloadMapping": { "type": "static", "payload": { - "data": "^start(animations/Stand/Gestures/Beckon_1)" + "data": "^start(animations/Stand/Gestures/Hello_1)" } } }, @@ -1666,14 +1666,14 @@ "topic": "/speech", "messageType": "std_msgs/msg/String", "messageTemplate": { - "data": "^start(animations/Stand/Gestures/Beckon_1)" + "data": "^start(animations/Stand/Gestures/Hello_1)" } } }, { "id": "think", "name": "Think", - "description": "Thinking gesture with hand near head", + "description": "Thinking gesture - hand to chin", "category": "movement", "icon": "help-circle", "timeout": 2000, @@ -1688,7 +1688,7 @@ "payloadMapping": { "type": "static", "payload": { - "data": "^start(animations/Stand/Gestures/Thinking_1)" + "data": "^start(animations/Stand/Gestures/Gesture_You_1)" } } }, @@ -1697,7 +1697,7 @@ "topic": "/speech", "messageType": "std_msgs/msg/String", "messageTemplate": { - "data": "^start(animations/Stand/Gestures/Thinking_1)" + "data": "^start(animations/Stand/Gestures/Gesture_You_1)" } } },