Hi there,
I developed an GSD interface for our lighting controller. So, it worked fine in both directions in 2.0.0.39, i. e. when somebody switched light ON/OFF manually using button the status of this device was changed in Pluto Orbiter. I use this code for this:
cmd = Command.new(plutoID, -1001, 1, 2, 48)
if(lightOn)
cmd.params_[10] = "1"
else
cmd.params_[10] = "0"
end
conn_.Send(command)
Recently, I checked this with 2.0.0.42 and I was surprised that it didn't work anymore. When I send 0 (light OFF) the color of icon on the Orbiter is changed to black. It's correct. But when I send 1 (light ON), the color of the icon isn't changed.
Any ideas why?