Files
openhab/rules/kuchnia.rules

12 lines
193 B
Plaintext
Raw Permalink Normal View History

2018-07-01 21:48:20 +02:00
rule "Kuchnia: przełącz LED"
when
Item sD1MINI02LEDS received update
then
if (sD1MINI02MOS.state == ON) {
sD1MINI02MOS.sendCommand(OFF)
} else {
sD1MINI02MOS.sendCommand(ON)
}
end