Implement WebSocket telemetry relay with: - 2Hz JSON aggregation (battery, motors, IMU, GPS, health, social) - Port 9091 with token authentication - msgpack compression option - 5-minute circular history buffer - Mobile-friendly responsive HTML UI - Auto-reconnect WebSocket with fallback - Critical alerts: low battery (< 15%), high temps, node crash - Real-time dashboard with telemetry gauges Features: - Battery monitoring with SOC/voltage/current - Motor command visualization (L/R duty) - IMU attitude display (roll/pitch/yaw) - CPU/GPU temperature with thresholds - RAM/Disk usage progress bars - GPS coordinates (lat/lon/alt) - Social state (speaking, face tracking) - Alert history with severity levels Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
|
<package format="3">
|
|
<name>saltybot_remote_monitor</name>
|
|
<version>0.1.0</version>
|
|
<description>
|
|
Remote monitoring WebSocket relay with mobile-friendly UI.
|
|
2Hz JSON telemetry aggregation with msgpack compression, token auth,
|
|
5min history buffer, and critical alerts (fall, low battery, node crash).
|
|
</description>
|
|
<maintainer email="seb@vayrette.com">seb</maintainer>
|
|
<license>MIT</license>
|
|
|
|
<depend>rclpy</depend>
|
|
<depend>sensor_msgs</depend>
|
|
<depend>geometry_msgs</depend>
|
|
<depend>diagnostic_msgs</depend>
|
|
<depend>std_msgs</depend>
|
|
|
|
<exec_depend>python3-aiohttp</exec_depend>
|
|
<exec_depend>python3-msgpack</exec_depend>
|
|
<exec_depend>python3-launch-ros</exec_depend>
|
|
|
|
<test_depend>ament_copyright</test_depend>
|
|
<test_depend>ament_flake8</test_depend>
|
|
<test_depend>ament_pep257</test_depend>
|
|
<test_depend>python3-pytest</test_depend>
|
|
|
|
<export>
|
|
<build_type>ament_python</build_type>
|
|
</export>
|
|
</package>
|