Fix say_with_emotion and move_arm implementation configs

- say_with_emotion: add NAOqi emotion markup to messageTemplate
- move_arm: add implementation config
This commit is contained in:
Sean O'Connor
2026-03-21 18:56:56 -04:00
parent 817ee69b87
commit d3a9093d67

View File

@@ -667,7 +667,7 @@
"topic": "/speech",
"messageType": "std_msgs/msg/String",
"messageTemplate": {
"data": "{{text}}"
"data": "\\\\rspd={{speed}}\\\\rst={{emotion}}\\{{text}}"
}
}
},
@@ -900,6 +900,16 @@
"speed": "{{speed}}"
}
}
},
"implementation": {
"type": "ros2_topic",
"topic": "/joint_angles",
"messageType": "naoqi_bridge_msgs/msg/JointAnglesWithSpeed",
"messageTemplate": {
"joint_names": ["{{arm === 'left' ? 'L' : 'R'}}ShoulderPitch", "{{arm === 'left' ? 'L' : 'R'}}ShoulderRoll", "{{arm === 'left' ? 'L' : 'R'}}ElbowYaw", "{{arm === 'left' ? 'L' : 'R'}}ElbowRoll"],
"joint_angles": ["{{shoulder_pitch}}", "{{shoulder_roll}}", "{{elbow_yaw}}", "{{elbow_roll}}"],
"speed": "{{speed}}"
}
}
},
{