| .. | ||
| README.md | ||
| w0_data_lake_inspector.html | ||
| w1_system_health_indicator.html | ||
| w2_mission_status.html | ||
| w3_abort_button.html | ||
| w4_mission_setup_button.html | ||
| w5_battery_return_budget.html | ||
Argonaut 3 — Cockpit DIY Widgets
How to install a widget
- Open Cockpit in your browser
- Enter edit mode (pencil icon, top right)
- Click Add Widget at the bottom of the screen
- Scroll right to find the
</>DIY widget — drag it onto the view - Click the gear icon on the widget to open the editor
- Click Import and select the
.htmlfile for the widget you want - The widget will load immediately
Widget index
| File | Widget | Notes |
|---|---|---|
| w0_data_lake_inspector.html | Data Lake Inspector | Diagnostic — shows all data lake variables. Not production. |
| w1_system_health_indicator.html | System Health Indicator | Traffic light GREEN/AMBER/RED. Reads rov_failsafe from data lake. |
| w2_mission_status.html | Mission Status | Progress bar + state. Reads rov_mission_state and rov_mission_progress. |
| w3_abort_button.html | Abort Button | Confirm dialog → POST /abort to FastAPI. Edit FASTAPI_HOST before use. |
| w4_mission_setup_button.html | Mission Setup Button | Opens setup page in new tab. Edit SETUP_URL before use. |
| w5_battery_return_budget.html | Return Budget | Headroom warning. Reads SYS_STATUS/battery_remaining (native) + rov_return_budget. |
Config values to edit before field use
In w3_abort_button.html:
const FASTAPI_HOST = 'http://blueos.local:8081';
In w4_mission_setup_button.html:
const SETUP_URL = 'http://blueos.local:8081/setup';
Both values are correct for real hardware. For dev VM, use the VM's Tailscale IP instead of blueos.local.