kuchnia blat: autogaszenie i niezapalanie na urlopie

This commit is contained in:
2024-09-27 09:53:53 +02:00
parent 41e7396205
commit da120b4210

View File

@@ -3,18 +3,22 @@ rule "Zapal cottonballs i blat rano"
when
Time cron "0 45 5 ? * MON-FRI *"
then
if (sHolidayVacancy.state == ON) {
return;
}
sOWFS01.sendCommand(ON)
sD1MINI02MOS.sendCommand(ON)
end
rule "Zgaś cottonball i blat rano"
rule "Zgaś cottonballs i blat rano"
when
Time cron "0 35 6 * * ?"
then
sOWFS01.sendCommand(OFF)
sOWFS01_expected.postUpdate(OFF)
/* commented out during stay-at-home
sD1MINI02MOS.sendCommand(OFF) */
/* commented out during stay-at-home */
sD1MINI02MOS.sendCommand(OFF)
end