Files
openhab/rules/sypialnia.lampka-nocna.rules
2025-12-03 09:58:05 +01:00

44 lines
625 B
Plaintext

rule "Zapal lampkę i cottonballs rano"
when
/* Time cron "0 43 5 ? * MON-FRI *" */
Time cron "0 14 6 ? * MON-FRI *"
/* Time cron "0 59 8 ? * MON-FRI *" */
then
if (sHolidayVacancy.state != ON) {
sOWFS02.sendCommand(ON)
sSONOFF08a.sendCommand(ON)
}
end
rule "Zapal lampkę WFH"
when
Time cron "0 09 7 ? * FRI *"
then
sOWFS02.sendCommand(ON)
end
rule "Zgaś lampkę i cottonballs rano"
when
/* Time cron "0 30 6 * * ?" */
Time cron "0 10 7 * * ?"
then
sOWFS02.sendCommand(OFF)
sSONOFF08a.sendCommand(OFF)
end
/*
1 Seconds
2 Minutes
3 Hours
4 Day-of-Month
5 Month
6 Day-of-Week
7 Year (optional field)
*/