From 1cd367332b398cfabe3831c640956c31465430c5 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 21 Jan 2026 22:10:30 +0000 Subject: [PATCH] Add v2 WiFi visualization panels and initialization - Add proximity radar panel with filter buttons (All/Hidden/Open/Strong) - Add zone summary display (Immediate/Near/Far) - Add channel analysis panel with 2.4/5 GHz band tabs - Initialize WiFiMode when switching to WiFi mode Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/templates/index.html b/templates/index.html index 4e97dbf..1266ae4 100644 --- a/templates/index.html +++ b/templates/index.html @@ -684,6 +684,40 @@
+ +
+
Proximity Radar
+
+
+ + + + +
+
+
+ 0 +
Immediate
+
+
+ 0 +
Near
+
+
+ 0 +
Far
+
+
+
+ +
+
Channel Analysis (v2)
+
+ + +
+
+
@@ -2210,6 +2244,10 @@ refreshWifiInterfaces(); initRadar(); initWatchList(); + // Initialize v2 WiFi components + if (typeof WiFiMode !== 'undefined') { + WiFiMode.init(); + } } else if (mode === 'bluetooth') { refreshBtInterfaces(); initBtRadar();