Ring Doorbell -- Home assistant "Error while setting up platform ring"

I am currently running Home Assistant 0.58.1 and I’m getting an error in the log for my ring component as shown below:.

2017-12-02 15:42:31 ERROR (MainThread) [homeassistant.components.binary_sensor] Error while setting up platform ring
Traceback (most recent call last):
File “/srv/homeassistant/lib/python3.5/site-packages/homeassistant/helpers/entity_component.py”, line 171, in _async_setup_platform
SLOW_SETUP_MAX_WAIT, loop=self.hass.loop)
File “/usr/lib/python3.5/asyncio/tasks.py”, line 392, in wait_for
return fut.result()
File “/usr/lib/python3.5/asyncio/futures.py”, line 274, in result
raise self._exception
File “/usr/lib/python3.5/concurrent/futures/thread.py”, line 55, in run
result = self.fn(*self.args, **self.kwargs)
File “/srv/homeassistant/lib/python3.5/site-packages/homeassistant/components/binary_sensor/ring.py”, line 54, in setup_platform
for device in ring.stickup_cams:
AttributeError: ‘Ring’ object has no attribute ‘stickup_cams’

I don’t have any stickup cams so Not sure about that Attribute error.

here are the relevant portions of my config.yaml.

ring:
  username: 'my actual ring email'
  password: 'my actual ring password'




binary_sensor: # !include binary_sensors.yaml
  - platform: ring
    monitored_conditions:
      - ding
      - motion

Also, I am not attempting to access video with Home Assistant and I do have an active ring cloud subscription. My phone app for ring is working properly

Did you get it working?

I do not use the binary sensor. I just used the sensor.

Sensor

  • platform: ring
    monitored_conditions:
    • ‘battery’
    • ‘last_activity’
    • ‘last_ding’
    • ‘last_motion’
    • ‘volume’
    • ‘wifi_signal_category’
    • ‘wifi_signal_strength’

group

Ring:
- sensor.ring_front_door_battery
- sensor.ring_front_door_last_activity
- sensor.ring_front_door_last_ding
- sensor.ring_front_door_last_motion
- sensor.ring_front_door_volume
- sensor.ring_front_door_wifi_signal_category
- sensor.ring_front_door_wifi_signal_strength


camera

  • platform: ring

I never got it working as a binary sensor. I gave up and moved ring to my wink hub. Thanks for the suggestion though. If the delay with wink gets too bad I’ll definitely try your approach.