mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 09:17:35 +00:00

* Added Ring Camera component documentation and added new sensors * Kept only the basic as example for the component * Added scan_interval option to camera ring documentation * Rephrased statement
38 lines
1.5 KiB
Markdown
38 lines
1.5 KiB
Markdown
---
|
|
layout: page
|
|
title: "Ring Sensor"
|
|
description: "Instructions on how to integrate your Ring.com devices within Home Assistant."
|
|
date: 2017-04-01 10:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: ring.png
|
|
ha_category: Sensor
|
|
ha_release: "0.40"
|
|
ha_iot_class: "Cloud Polling"
|
|
---
|
|
|
|
To get your [Ring.com](https://ring.com/) binary sensors working within Home Assistant, please follow the instructions for the general [Ring component](/components/ring).
|
|
|
|
Once you have enabled the [Ring component](/components/ring), add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
sensor:
|
|
- platform: ring
|
|
```
|
|
|
|
Configuration variables:
|
|
|
|
- **monitored_conditions** array (*Optional*): Conditions to display in the frontend. The following conditions can be monitored. If not specified, all conditions below will be enabled.
|
|
- **battery**: Return the battery level from device
|
|
- **last_activity**: Return the timestamp from the last event captured (ding/motion/on demand) by the Ring doorbell camera
|
|
- **last_ding**: Return the timestamp from the last time the Ring doorbell button was pressed
|
|
- **last_motion**: Return the timestamp from the last motion event captured by the Ring doorbell camera
|
|
- **volume**: Return the volume level from the device.
|
|
- **wifi_signal_category**: Return the WiFi signal level from the device.
|
|
- **wifi_signal_strength**: Return the WiFi signal strength (dBm) from the device.
|
|
|
|
Currently it supports doorbell, external chimes and stickup cameras.
|