My Leviton 4-button zone controller (VRCZ4) is mostly working, but there are two things confusing me that I thought I might ask about:
[ol][li]The controller does not work if I only assign scenes (i.e. scene 1a = light 1 on, scene 1b = light 1 off). I have to assign Light 1 in this example to a “Group” under the device options. In fact, the controller works fine if I don’t have any scenes assigned, only Groups. It was my understanding that Vera doesn’t differentiate between scenes and zones - but what exactly is the “group” assignment doing? Do I need to assign scenes if I’m only using the on/off/dim functionality?
[/li]
[li]
The LED indicator lights on each button blink when a zone controller button is pressed, but don’t stay on when the light is turned on. When I use the actual light switch, however, the LED next to the button that switch is assigned to will turn green. I’d like to scrap this completely, and have it so that the LEDs are all green when all lights are off (so I can find them at night). I tried this code to turn all LEDs green (8 is my 4-zone controller) in a scene that is supposed to turn the lights off, but the top LED didn’t light up, though the rest were green:[/li][/ol]
luup.call_action("urn:micasaverde-com:serviceId:SceneControllerLED1","SetLight",{newValue="1",Indicator="1"}, 8 ) luup.call_action("urn:micasaverde-com:serviceId:SceneControllerLED1","SetLight",{newValue="1",Indicator="2"}, 8 ) luup.call_action("urn:micasaverde-com:serviceId:SceneControllerLED1","SetLight",{newValue="1",Indicator="3"}, 8 ) luup.call_action("urn:micasaverde-com:serviceId:SceneControllerLED1","SetLight",{newValue="1",Indicator="4"}, 8 )
(thanks to the poster that wrote this, btw)
So in short, what’s the story with groups vs. scenes, and how can I get my LEDs working? Thanks!