diff --git a/Software/data_src/index.htm b/Software/data_src/index.htm index 41a9252..57f43b9 100644 --- a/Software/data_src/index.htm +++ b/Software/data_src/index.htm @@ -441,7 +441,7 @@
- +
@@ -454,7 +454,7 @@
diff --git a/Software/data_src/static/js/websocket.js b/Software/data_src/static/js/websocket.js index 6c69439..fa3b7a6 100644 --- a/Software/data_src/static/js/websocket.js +++ b/Software/data_src/static/js/websocket.js @@ -91,6 +91,7 @@ function onMessage(event) { } else if (data.startsWith("MAPPING_STATIC:")) { const data_sliced = data.slice(15); staticMapping = createMapping(data_sliced); + console.log(staticMapping); } else if (data.startsWith("STATUS:")) { const data_sliced = data.slice(7); const result = processDataString(data_sliced, statusMapping); @@ -99,6 +100,7 @@ function onMessage(event) { const data_sliced = data.slice(7); const result = processDataString(data_sliced, staticMapping); fillValuesToHTML(result); + console.log(result); overlay.style.display = "none"; } } diff --git a/Software/src/webui.cpp b/Software/src/webui.cpp index aabb718..7705345 100644 --- a/Software/src/webui.cpp +++ b/Software/src/webui.cpp @@ -718,7 +718,7 @@ void Websocket_RefreshClientData_Static(uint32_t client_id, bool send_mapping) "showcan;" "bleedingpulses;" "wifi-ssid;" - "wifi-password;"; + "wifi-pass;"; if (client_id > 0) webSocket.text(client_id, mapping);