Browse Source

Do not show schedule if there are no relays defined

rfm69
Xose Pérez 7 years ago
parent
commit
a3bc64a395
1 changed files with 18 additions and 13 deletions
  1. +18
    -13
      code/espurna/scheduler.ino

+ 18
- 13
code/espurna/scheduler.ino View File

@ -17,20 +17,25 @@ Adapted by Xose Pérez <xose dot perez at gmail dot com>
void _schWebSocketOnSend(JsonObject &root){ void _schWebSocketOnSend(JsonObject &root){
root["schVisible"] = 1; if (relayCount() > 0) {
root["maxSchedules"] = SCHEDULER_MAX_SCHEDULES; root["schVisible"] = 1;
JsonArray &sch = root.createNestedArray("schedule"); root["maxSchedules"] = SCHEDULER_MAX_SCHEDULES;
for (byte i = 0; i < SCHEDULER_MAX_SCHEDULES; i++) { JsonArray &sch = root.createNestedArray("schedule");
if (!hasSetting("schSwitch", i)) break; for (byte i = 0; i < SCHEDULER_MAX_SCHEDULES; i++) {
JsonObject &scheduler = sch.createNestedObject(); if (!hasSetting("schSwitch", i)) break;
scheduler["schEnabled"] = getSetting("schEnabled", i, 1).toInt() == 1; JsonObject &scheduler = sch.createNestedObject();
scheduler["schSwitch"] = getSetting("schSwitch", i, 0).toInt(); scheduler["schEnabled"] = getSetting("schEnabled", i, 1).toInt() == 1;
scheduler["schAction"] = getSetting("schAction", i, 0).toInt(); scheduler["schSwitch"] = getSetting("schSwitch", i, 0).toInt();
scheduler["schType"] = getSetting("schType", i, 0).toInt(); scheduler["schAction"] = getSetting("schAction", i, 0).toInt();
scheduler["schHour"] = getSetting("schHour", i, 0).toInt(); scheduler["schType"] = getSetting("schType", i, 0).toInt();
scheduler["schMinute"] = getSetting("schMinute", i, 0).toInt(); scheduler["schHour"] = getSetting("schHour", i, 0).toInt();
scheduler["schWDs"] = getSetting("schWDs", i, ""); scheduler["schMinute"] = getSetting("schMinute", i, 0).toInt();
scheduler["schWDs"] = getSetting("schWDs", i, "");
}
} }
} }
#endif // WEB_SUPPORT #endif // WEB_SUPPORT


|||||||
x
 
000:0
Loading…
Cancel
Save