feat: MQTT-to-ROS2 phone sensor bridge (Issue #601) #605

Merged
sl-jetson merged 2 commits from sl-android/issue-601-mqtt-ros2-bridge into main 2026-03-14 15:55:23 -04:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit c62444cc0e - Show all commits

View File

@ -15,6 +15,7 @@
<exec_depend>python3-numpy</exec_depend> <exec_depend>python3-numpy</exec_depend>
<exec_depend>python3-opencv</exec_depend> <exec_depend>python3-opencv</exec_depend>
<exec_depend>python3-launch-ros</exec_depend> <exec_depend>python3-launch-ros</exec_depend>
<exec_depend>python3-paho-mqtt</exec_depend>
<test_depend>ament_copyright</test_depend> <test_depend>ament_copyright</test_depend>
<test_depend>ament_flake8</test_depend> <test_depend>ament_flake8</test_depend>
<test_depend>ament_pep257</test_depend> <test_depend>ament_pep257</test_depend>

View File

@ -29,6 +29,7 @@ setup(
'openclaw_chat = saltybot_phone.openclaw_chat_node:main', 'openclaw_chat = saltybot_phone.openclaw_chat_node:main',
'phone_bridge = saltybot_phone.ws_bridge:main', 'phone_bridge = saltybot_phone.ws_bridge:main',
'phone_camera_node = saltybot_phone.phone_camera_node:main', 'phone_camera_node = saltybot_phone.phone_camera_node:main',
'mqtt_ros2_bridge = saltybot_phone.mqtt_ros2_bridge_node:main',
], ],
}, },
) )