Browse Source

Fix chipid

fastled
Xose Pérez 6 years ago
parent
commit
d404d4804a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/ws.ino

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

@ -323,7 +323,7 @@ void _wsOnStart(JsonObject& root) {
root["app_version"] = APP_VERSION;
root["app_build"] = buildTime();
root["manufacturer"] = MANUFACTURER;
root["chipid"] = chipid;
root["chipid"] = String(chipid);
root["mac"] = WiFi.macAddress();
root["device"] = DEVICE;
root["hostname"] = getSetting("hostname");


Loading…
Cancel
Save