32 lines
448 B
Plaintext
32 lines
448 B
Plaintext
|
|
|
|
rule "Zapal lampkę i cottonballs rano"
|
|
when
|
|
Time cron "0 43 5 ? * MON-FRI *"
|
|
/* Time cron "0 33 6 ? * MON-FRI *" */
|
|
then
|
|
sOWFS02.sendCommand(ON)
|
|
sSONOFF08a.sendCommand(ON)
|
|
end
|
|
|
|
|
|
rule "Zgaś lampkę i cottonballs rano"
|
|
when
|
|
/* Time cron "0 30 6 * * ?" */
|
|
Time cron "0 30 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)
|
|
*/
|