For all RGBW(W) lightning Limitless dzvent script options you must first switchOn() the bulb before you can do any set..... commands.
See below.
current support:
Code: Select all
domoticz.devices(BULB1).setRGB(125,125,125).afterSec(5)
domoticz.devices(BULB1).dimTo(50).afterSec(5)
Code: Select all
domoticz.devices(BULB1).switchOn()
domoticz.devices(BULB1).setRGB(125,125,125).afterSec(5)
domoticz.devices(BULB1).dimTo(50).afterSec(5)
With your plugin you cant do this. You can turn on the bulb directly then wait 5 seconds turn set color and brightness. Add the ,afterSec() behind the switchOn() then bulb goes on after 5 seconds, but the set color and brightness have no effect anymore (maybe it send the command earlier then bulb is on)
Below I try to test all the set .... command in dzVents script system to see if they working with you plugin.
setRGB(red, green, blue) - Not working yet
RGB White color: - Not working yet, RGB (255,255,255) seems not work. The previous color is showing instead of white
setColor(r, g, b, br, cw, ww, m, t) - Working
setHex(r, g, b) - Working
setKelvin(Kelvin) - Working, remember that value must be between 0-100
setWhiteMode() - Not working yet, in progress with developer
setDisco - Working
setNightMode - Working
setHue - Working You need to provide hue (0-360) and brightness(0-100), setHue(300,10) makes the lamp dim pink
increaseBrightness / decreaseBrightness - Not working yet, in progress with developer
@dannybloe @waaren maybe you can assist this great programmer and maybe give some advice?
I don't know if this is good information for you ?