dashboard: auto refresh diagnostics overlay every 5 seconds

This commit is contained in:
2026-06-19 02:27:41 -06:00
parent 9d75d2c39c
commit 3750659a3d
2 changed files with 7 additions and 2 deletions
@@ -1,6 +1,6 @@
#pragma once
static const char *DASHBOARD_VERSION = "0.1.121-obd-coolant-polling";
static const char *DASHBOARD_VERSION = "0.1.122-diagnostics-auto-refresh";
// Update these if your Cargo ESP AP credentials are different.
//static const char *CARGO_WIFI_SSID = "OverlandController";
@@ -2217,5 +2217,10 @@ void loop()
process_obd_can();
process_dashboard_page_switch();
if (diagnostics_overlay != nullptr) {
update_diagnostics_overlay();
}
delay(50);
}