I decided to try out a Z-Wave bulb and picked this one up on sale. They had non RGB ones, but they didn’t have any left, so I bought this one.
I was able to pair it to my Aeotec Gen5 stick. It shows up as a light with on/off button and when double-clicking on it, it shows the ability to change color and brightness. However, it will not change colors; but I was able to dim the light then couldn’t get it back to full brightness. After un-pairing and pairing back up, it was at full brightness.
I turned the light on for about an hour, turned it off for another hour. Then tried to turn it back on, but it wouldn’t come back on. According to HA, it stated that it is dead so I thought it was a bad bulb. Using the mechanical switch, it would light up briefly when turning it on and off quickly.
Since it was “dead”, I couldn’t seem to un-pair it. Finally, I shut off HA Pi and used the stick in un-pairing mode, and quickly turned off and on the bulb, where the stick finally verified that it was un-paired. Afterwards, the light would turn on and off with the mechanical switch.
I paired it up again, this time I left it on overnight and it seems to work ok now, but not sure if it is in secure mode. However, changing RGB still didn’t work, so I added an automation to turn it on, off, and change color, which works fine. After doing this, when double-clicking on the light, I’m able to change color and dim the bulb…weird.
So, it shows up as: zwave.hank_hkzwrgb01_rgb_bulb and light.level_4. I used light.level_4 in my automation:
- alias: 'Turn off MBR Light'
trigger:
platform: time
at: '20:14:00'
action:
service: light.turn_off
data:
entity_id:
- light.level_4
- alias: 'Turn on MBR Light'
trigger:
platform: time
at: '20:00:00'
action:
service: light.turn_on
data:
entity_id:
- light.level_4
- alias: 'Turn on Lime MBR Light'
trigger:
platform: time
at: '06:00:00'
action:
service: light.turn_on
data:
rgb_color: [0, 255, 0]
entity_id:
- light.level_4