Files
openhab/rules/kuchnia.rules
2018-07-01 21:48:20 +02:00

13 lines
217 B
Plaintext

rule "Kuchnia: przełącz LED"
when
Item sD1MINI02LEDS received update
then
if (sD1MINI02MOS.state == ON) {
sD1MINI02MOS.sendCommand(OFF)
/* zrobic PWM DIMM */
} else {
sD1MINI02MOS.sendCommand(ON)
}
end