Browse Source

Merge branch 'dev' into sensors

rfm69
Xose Pérez 6 years ago
parent
commit
80a28e95bb
4 changed files with 2405 additions and 2402 deletions
  1. BIN
      code/espurna/data/index.html.gz
  2. +2401
    -2401
      code/espurna/static/index.html.gz.h
  3. +3
    -0
      code/espurna/ws.ino
  4. +1
    -1
      code/html/index.html

BIN
code/espurna/data/index.html.gz View File


+ 2401
- 2401
code/espurna/static/index.html.gz.h
File diff suppressed because it is too large
View File


+ 3
- 0
code/espurna/ws.ino View File

@ -298,6 +298,9 @@ void _wsOnStart(JsonObject& root) {
root["btnDelay"] = getSetting("btnDelay", BUTTON_DBLCLICK_DELAY).toInt();
root["webPort"] = getSetting("webPort", WEB_PORT).toInt();
root["wsAuth"] = getSetting("wsAuth", WS_AUTHENTICATION).toInt() == 1;
#if TERMINAL_SUPPORT
root["cmdVisible"] = 1;
#endif
}


+ 1
- 1
code/html/index.html View File

@ -992,7 +992,7 @@
<fieldset>
<div class="pure-g module module-telnet">
<div class="pure-g module module-cmd">
<div class="pure-u-1 hint">
Write a command and click send to execute it on the device. The output will be shown in the debug text area below.
</div>


Loading…
Cancel
Save