Modify Ramp Rate on GE (Jasco) Dimmers

you guys ROCK- I’ve been using vera for years and while it was unstable and i couldn’t stand it anymore it did natively allow you to set any parameter on any zwave device.

I actually wanted to enable the load sensing feature on the ge/jasco/act/schlage/etc plug in lamp modules and used your great work as a guide.

I just commented out the 4 actual lines for dimming and added a line to set the load sensing bit and presto chango- i’m all set.

def fixRampRate() {
log.debug(“Fixing ramp rate”)
delayBetween([
// 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()
zwave.configurationV1.configurationSet(configurationValue: [1], parameterNumber: 29, size: 1).format()
], 500)
}

and then i got crazy and relabled the tile to do it too- laughing.

You guys are great - i love this community!