MichaelK
(Michael K)
January 6, 2016, 3:09am
2
this is a good place to look as a start- it’s for fiddling with parameters on ge dimmers but you should be able to use the code bits to send the parameters you need to a different brand
It’s possible to change the ramp rate of GE switches, but I’m not sure the best way to do this in smart things. I only really want to set the values once per switch, and I want to use the same value for all my dimmers.
My first thought was to create my own dimmer device type and just throw in a one time setting of these parameters in the “refresh” command. However, this does not seem to be working for me (setting all values to 1):
zwave.configurationV1.configurationSet(configurationValue: [1], parameterNumber: 7, size: 1).format()
zwave.configurationV1.configurationSet(configurationValue: [1], parameterNumber: 8, size: 1).format()
zwave.configurationV1.configurationSet(configurationValue: [1], parameterNumber: 9, size: 1).format()
zwave.configurationV1.configurationSet(configurationValue…