Looks like someone was able to integrate this using MQTT. Only just set it up myself but seems to be working well.
Great news, now just need to wait for Hassio support.
Anyone have any luck with Hassio yet?
check out this thread:
Yes I have, even the developer states in that thread he is not sure how to make it work with Hassio
I would love to use the keypad and the panic button for example without their hub, as all products are Z-Wave compatible.
plus any zwave contact sensors work with the ring alarm
How do you set Ring devices in the mode where they can be added to HA? Usually after your Z-wave controller is set to include devices, you have to do something on the actual Z-Wave device. Anyone tried it?
I also would very much like to see this.
In the meantime, Iâm working around using the Ring Alarm sensors by using Ringâs Alexa skill, which lets Alexa routines be set up responding to those sensors, and then setting up routines to toggle input_booleans in HA when the Ring sensors trigger.
Good idea, can you share how you did it? Also, do you have anything for the keypad?
With Ring adding the 2FA I hope with the current Ring integration that the Alarm system and smart lights get added into the mix.
Sure. Iâve got to warn you, though - itâs a real kluge. (And, sadly, doesnât have anything for the keypad.)
Iâm actually not using it for my Ring Alarm sensors any more (Iâve discovered https://github.com/rs1932/ring-alarm-hassio-addon , which covers that and more, like alarm arm/disarm), but Iâm still using it for my Yale smart locks via Alexa, and itâs exactly the same technique.
First up, for this, you need the Alexa Smart Home Skill integration set up and working already. The same technique should also work using the Home Assistant Cloud, but I havenât got that myself.
Then, set up input_booleans to represent your various sensors, etc., and publish them in your smart home skill, thus:
### Door locks
# Receivers
input_boolean:
front_door_lock:
name: Front Door Lock
side_door_lock:
name: Side Door Lock
back_door_lock:
name: Back Door Lock
# Alexa
alexa:
smart_home:
filter:
include_entities:
- input_boolean.front_door_lock
- input_boolean.side_door_lock
- input_boolean.back_door_lock
entity_config:
input_boolean.front_door_lock:
name: đ Front Door Lock
input_boolean.side_door_lock:
name: đ Side Door Lock
input_boolean.back_door_lock:
name: đ Back Door Lock
I use the emoji in the names of the devices for Alexa to indicate that theyâre intended for use in the automation, and shouldnât be used manually. Conveniently, it also ensures that all the automation-only devices sort at the end of the list, out of the way. (If the emoji doesnât come through when you look at the devices in the Alexa app, you can always edit them back in, there.)
So you should now have these:
Then, you need to set up routines to copy the state from the sensor (in my case, the door lock) to the input_boolean. This requires two routines per device, one for locked->on and one for unlocked->off. Which should look like this:
And there you go!
As I said, itâs a bit of a kluge, but it does work. I use a Node-RED flow to âlaunderâ the input_booleans into binary_sensors, but thatâs not strictly necessary for anything but the sake of pedantry.
Got it, thank you.
Just a heads up to anyone interestedâŚ
I got the Ring Hub and added it plus a ton of Ring security z-wave devices to home assistant (1x Hub, 2x KeyPads, 3x Retro Fit Kits, 3x Door/Window Sensors, 4x motion sensors) only to discover that the Ring Z-wave devices are NOT currently supported in Home Assistant because theyâre not currently listed in OpenZWave.
(If anyone is interested I kept all of the z-wave ring device information so someone can add it to open zwave but this process is way too intimidating for me.)
Also, the Ring Hub currently supports joining an existing Z-wave Network (WOOHOO!!!), but currently itâs broken on their software side. When joining your existing Zwave network the hub has the ability to scan the network and detect/integrate all the devices on the Zwave network, but it doesnât look like Ring has implemented this feature yet. (Harmony Hub with Extender does this well) So right now they hub does nothing when connected to an existing network and basically becomes worthless.
Sooooo⌠I expect once they get this worked out everything will be great! but until then, donât add your Ring security Device to Zwave. 1. Theyâre not currently supported 2. you wonât be able to leverage anything in the Ring app right now which means you canât use the service either.
Hi guys! Any updates on this?
Iâm planning to add ring security system plus camera and sensor at my new house and hoping to integrate those sensors and cameras and security panel into HA
Thereâs a mqtt add-on that gets this working. But I still donât see Ring Zwave devices supported in OpenZwave
Hi everyone, I ignorantly went down this route with ozw due to my desire to add keypads into my home for a diy alarm system. Disclaimer I am a general idiot with minimal skill, but maybe someone can champion this going forward
- OZW does not implement the entry control class yet. This obviously affects compatibility in zwave2mqtt and the hass openzwave implementation. Latest I could find is here Ring Keypad - Zwave secure inclusion successful - unknown in OZW (google.com)
- node-zwave-js does not implement the entry control class yet either [Tracking] Implementation status of Command Classes ¡ Issue #6 ¡ zwave-js/node-zwave-js (github.com)
2a. If you want to see keypads supported by node-zwave-js please vote here Command Class Wishlist ¡ Issue #729 ¡ zwave-js/node-zwave-js (github.com) - If you would like to see my keypad-v2 config file that obviously doesnt work, due to above limitations then find it here jtscott/open-zwave (github.com)
I am not the right person to be writing code and contributing to either of these lovely projects, but for now I will just setup a ring hub because the hardware is very nice. Hopefully in the future I can dump the hub and bring the devices over to my greater z-wave network but for now that is the only solution I can see.
I would be down to support a bounty for a worthy contributor though!