diff --git a/Build-instructions-Bestway-WiFi-remote.pdf b/Build-instructions-Bestway-WiFi-remote.pdf index a39e2b8b..d23ab7c2 100644 Binary files a/Build-instructions-Bestway-WiFi-remote.pdf and b/Build-instructions-Bestway-WiFi-remote.pdf differ diff --git a/Code/4-wire-version/data/WebSocket.js b/Code/4-wire-version/data/WebSocket.js index 39ae93de..53036b65 100644 --- a/Code/4-wire-version/data/WebSocket.js +++ b/Code/4-wire-version/data/WebSocket.js @@ -95,7 +95,7 @@ function handlemsg(e) "CONNECT_BAD_CLIENT_ID", // 2 / the server rejected the client identifier "CONNECT_UNAVAILABLE", // 3 / the server was unable to accept the connection "CONNECT_BAD_CREDENTIALS", // 4 / the username/password were rejected - "CONNECT_UNAUTHORIZED" // 5 / e client was not authorized to connect + "CONNECT_UNAUTHORIZED" // 5 / the client was not authorized to connect ] document.getElementById('mqtt').innerHTML = "MQTT: " + mqtt_states[msgobj.MQTT + 4]; @@ -108,6 +108,9 @@ function handlemsg(e) document.getElementById('jetstitle').style.display = (jetsAvailable ? 'inherit' : 'none'); document.getElementById('jetsbutton').style.display = (jetsAvailable ? 'inherit' : 'none'); document.getElementById('jetstotals').style.display = (jetsAvailable ? 'inherit' : 'none'); + + document.getElementById('ciotx').innerHTML = 'CIO TX: ' + (msgobj.CIOTX ? 'Active' : 'Dead'); + document.getElementById('dsptx').innerHTML = 'DSP TX: ' + (msgobj.DSPTX ? 'Active' : 'Dead'); } if (msgobj.CONTENT == "STATES") diff --git a/Code/4-wire-version/data/index.html b/Code/4-wire-version/data/index.html index 054e127a..effa4538 100644 --- a/Code/4-wire-version/data/index.html +++ b/Code/4-wire-version/data/index.html @@ -176,6 +176,8 @@