node-red-contrib-nora
node-red-contrib-nora copied to clipboard
Light node dimmer function 0-255 needed
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;