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: [1], parameterNumber: 10, size: 1).format()
These do work for me when using the GE remote to set the parameters. Here is the info from the manual:
Dim Rate Adjustments
Both the number of steps (or levels) that the dimmer will change and the timing of the steps can be modified to suit personal preferences. The timing of the steps can be adjusted in 10 millisecond intervals.
1… When Receiving a Z-Wave Dim Command
• Parameter 7 (number of steps or levels)
• Parameter 8 (timing of the steps)
• Length: 1 Byte
• Valid Values:
Parameter 7 (default = 1) Valid Values: 1-99
Parameter 8 (default = 3) Valid Values: 1-255
- Manual Control Dimming (pressing the Dimmer’s rocker)
• Parameter 9 (number of steps or levels)
• Parameter 10 (timing of the steps)
• Length: 1 Byte
• Valid Values:
Parameter 9 (default = 1) Valid Values: 1-99 Parameter 10 (default = 3) Valid Values: 1-255