2018-05-13 11:18:43.084 setcolbrightnessvalue: ID: d, bri: 61, color: '{m: 3, RGB: caffd3, CWWW: 0000, CT: 0}'
Something similar to http://" .. IP .. "/?RGB=HEXvalue
or rgb like R=RR G=GG B=BB
Dimmer I use:
Code: Select all
commandArray = {}
DomDevice = 'Bed_rgb_light';
IP = '192.168.1.40';
if devicechanged[DomDevice] then
DomValue = otherdevices_svalues[DomDevice];
CalcValue = DomValue;
commandArray['Variable:Bed_rgb_light_var'] = tostring(CalcValue);
-- print ("dimm Level = "..uservariables['Bed_rgb_light_var']);
runcommand = "curl http://" .. IP .. "/?A=" .. CalcValue .. " ";
os.execute(runcommand);
print("PWM calculated value= "..CalcValue);
end
return commandArray