Open sniperxnl opened 4 years ago
Possible to add Dimmer function between 0-255 or make the brightness function between 0-255, ikea bulbs need that command
you only need to convert the value via a function in node red
I use the range node in node red
or use a simple line in a function node
var brightness = (msg.payload.brightness/100)*254;
Possible to add Dimmer function between 0-255 or make the brightness function between 0-255, ikea bulbs need that command