From 656bfdbc67032f54f5d90446d4f451072cceb23e Mon Sep 17 00:00:00 2001 From: Jared Dohrman Date: Wed, 15 Apr 2026 18:56:59 +1000 Subject: [PATCH] fix: correct radio RSSI graph scaling on /stats --- src/helpers/web/WebPanelServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/web/WebPanelServer.cpp b/src/helpers/web/WebPanelServer.cpp index c9502bee..4b447b7a 100644 --- a/src/helpers/web/WebPanelServer.cpp +++ b/src/helpers/web/WebPanelServer.cpp @@ -1416,7 +1416,7 @@ const char kWebPanelAppHtml[] PROGMEM = R"HTML( `; } function renderRadioCard(radio) { - const rssiPct = pctRange(radio.last_rssi, -20, -120); + const rssiPct = pctRange(radio.last_rssi, -120, -20); const snrPct = pctRange(radio.last_snr, -20, 20); const noisePct = pctRange(radio.noise_floor, -60, -113); const totalAir = (radio.tx_air_secs || 0) + (radio.rx_air_secs || 0);