Browse Source

Change keys in migrate module

v2
Xose Pérez 6 years ago
parent
commit
2bf3809680
12 changed files with 10656 additions and 10638 deletions
  1. BIN
      code/espurna/data/index.all.html.gz
  2. BIN
      code/espurna/data/index.light.html.gz
  3. BIN
      code/espurna/data/index.rfbridge.html.gz
  4. BIN
      code/espurna/data/index.sensor.html.gz
  5. BIN
      code/espurna/data/index.small.html.gz
  6. +1
    -1
      code/espurna/espurna.ino
  7. +400
    -381
      code/espurna/migrate.ino
  8. +2272
    -2272
      code/espurna/static/index.all.html.gz.h
  9. +2220
    -2220
      code/espurna/static/index.light.html.gz.h
  10. +2544
    -2544
      code/espurna/static/index.rfbridge.html.gz.h
  11. +1366
    -1366
      code/espurna/static/index.sensor.html.gz.h
  12. +1853
    -1854
      code/espurna/static/index.small.html.gz.h

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


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


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


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


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


+ 1
- 1
code/espurna/espurna.ino View File

@ -43,7 +43,7 @@ void espurnaRegisterLoop(void (*callback)()) {
bool _espWebSocketOnReceive(const char * key, JsonVariant& value) { bool _espWebSocketOnReceive(const char * key, JsonVariant& value) {
if (strncmp(key, "admin", 5) == 0) return true; if (strncmp(key, "admin", 5) == 0) return true;
if (strncmp(key, "hostname", 8) == 0) return true; if (strncmp(key, "hostname", 8) == 0) return true;
if (strncmp(key, "boardName", 9) == 0) return true;
if (strncmp(key, "board", 5) == 0) return true;
if (strncmp(key, "loopDelay", 9) == 0) return true; if (strncmp(key, "loopDelay", 9) == 0) return true;
if (strncmp(key, "wtfHeap", 7) == 0) return true; if (strncmp(key, "wtfHeap", 7) == 0) return true;
return false; return false;


+ 400
- 381
code/espurna/migrate.ino
File diff suppressed because it is too large
View File


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


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


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


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


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


Loading…
Cancel
Save