54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
|
|
|
||
|
|
rule "Przedpokój: przełącz światło"
|
||
|
|
when
|
||
|
|
/* If there is no action the button returns 0. When you touch it it shows a state of 1 . */
|
||
|
|
Item sSONOFF06KEY received update ON or
|
||
|
|
Item sD1MINI06KEY received update
|
||
|
|
then
|
||
|
|
if (sSONOFF06.state == ON) {
|
||
|
|
sSONOFF06.sendCommand(OFF)
|
||
|
|
} else {
|
||
|
|
sSONOFF06.sendCommand(ON)
|
||
|
|
}
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
/* podswietlenie bedzie caly czas ON, ustawione jako dioda statusu */
|
||
|
|
/*rule "Przedpokój: synchronizuj podświetlenia przycisków"
|
||
|
|
when
|
||
|
|
Item sSONOFF06 received update
|
||
|
|
then
|
||
|
|
if (sSONOFF06.state == ON) {
|
||
|
|
sSONOFF06LED.sendCommand(OFF)
|
||
|
|
sD1MINI03_light_red.sendCommand(OFF)
|
||
|
|
} else {
|
||
|
|
sSONOFF06LED.sendCommand(ON)
|
||
|
|
sD1MINI03_light_red.sendCommand(ON)
|
||
|
|
}
|
||
|
|
end*/
|
||
|
|
|
||
|
|
|
||
|
|
/* jak się urwie od internetu przyciskowi, zsynchronizuj stan światła na OFF */
|
||
|
|
when
|
||
|
|
Item rSONOFF06 received update OFF
|
||
|
|
then
|
||
|
|
sSONOFF06.postUpdate(OFF)
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
rule "Przedpokój: zapal rano"
|
||
|
|
when
|
||
|
|
Time cron "0 50 5 ? * MON-FRI *"
|
||
|
|
then
|
||
|
|
sSONOFF06.sendCommand(ON)
|
||
|
|
end
|
||
|
|
|
||
|
|
rule "Przedpokój: zgaś rano"
|
||
|
|
when
|
||
|
|
Time cron "0 50 6 ? * MON-FRI *"
|
||
|
|
then
|
||
|
|
sSONOFF06.sendCommand(OFF)
|
||
|
|
end
|
||
|
|
|