I have GE/Jasco dimmer switches and for a night light scene I would like to dim them to 5%. However, the Vera Lite controller with UI5 only lets me set the level in 10% increments with 10% being the lowest level. The switches are clearly capable of dimming below 10%. I can set the level to 10% using Vera Lite and then use the switch’s rocker switch to dim lower.
Trying setting the dim level for the scene under the advanced tab.
- Garrett
I use the following luup code to get 15%.
local bathdimmer = 50
luup.call_action(“urn:upnp-org:serviceId:Dimming1”, “SetLoadLevelTarget”, {newLoadlevelTarget = “15”}, bathdimmer)
I have a similar question.
I can adjust my Evolve dimmers by only 10% increments in UI5 and in the veramobile app in 2% increments.
If I want to dim a light to 12%, how do I accomplish that in UI5?
I don’t think the step size can be controlled, or a specific value put in, if you’re controlling the device from the GUI directly. However, in scenes, you can get any value, per @garrettwp’s comment.