Files
openhab/rules/sypialnia.lampka-nocna.rules

30 lines
378 B
Plaintext
Raw Normal View History

2018-07-01 21:48:20 +02:00
rule "Zapal lampkę i cottonballs rano"
2018-07-01 21:48:20 +02:00
when
Time cron "0 42 5 ? * MON-FRI *"
2018-07-01 21:48:20 +02:00
then
sOWFS02.sendCommand(ON)
sSONOFF08a.sendCommand(ON)
2018-07-01 21:48:20 +02:00
end
rule "Zgaś lampkę i cottonballs rano"
2018-07-01 21:48:20 +02:00
when
Time cron "0 30 6 * * ?"
2018-07-01 21:48:20 +02:00
then
sOWFS02.sendCommand(OFF)
sSONOFF08a.sendCommand(OFF)
2018-07-01 21:48:20 +02:00
end
/*
1 Seconds
2 Minutes
3 Hours
4 Day-of-Month
5 Month
6 Day-of-Week
7 Year (optional field)
*/