Skip to content

Commit 75c5aaa

Browse files
tchellomellofabaff
authored andcommitted
Added Ring Camera component documentation and added new sensors (home-assistant#3682)
* 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
1 parent 3b001c7 commit 75c5aaa

File tree

3 files changed

+42
-15
lines changed

3 files changed

+42
-15
lines changed

source/_components/binary_sensor.ring.markdown

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ footer: true
1010
logo: ring.png
1111
ha_category: Binary Sensor
1212
ha_release: 0.42
13+
ha_iot_class: "Cloud Polling"
1314
---
1415

1516
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).
@@ -20,15 +21,12 @@ Once you have enabled the [Ring component](/components/ring), add the following
2021
# Example configuration.yaml entry
2122
binary_sensor:
2223
- platform: ring
23-
monitored_conditions:
24-
- ding
25-
- motion
2624
```
2725
2826
Configuration variables:
2927
30-
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
28+
- **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.
3129
- **ding**: Return a boolean value when the doorbell button was pressed.
3230
- **motion**: Return a boolean value when a movement was detected by the Ring doorbell.
3331
34-
Currently only doorbells are supported by this sensor.
32+
Currently it supports doorbell, external chimes and stickup cameras.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: page
3+
title: "Ring Binary Camera"
4+
description: "Instructions on how to integrate your Ring.com devices within Home Assistant."
5+
date: 2017-10-20 10:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: ring.png
11+
ha_category: Camera
12+
ha_release: 0.57
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Ring.com](https://ring.com/) cameras working within Home Assistant, please follow the instructions for the general [Ring component](/components/ring).
17+
18+
Once you have enabled the [Ring component](/components/ring), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
camera:
23+
- platform: ring
24+
```
25+
26+
Configuration variables:
27+
28+
- **ffmpeg_arguments**: (*Optional*): Extra options to pass to ffmpeg, e.g., image quality or video filter options.
29+
- **scan_interval**: (*Optional*): How frequently to query for new video. Defaults to 90 seconds.
30+
31+
**Note:** To be able to playback the last capture, it is required to install the `ffmpeg` component. Make sure to follow the steps mentioned at [FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation.
32+
33+
Currently it supports doorbell and stickup cameras.

source/_components/sensor.ring.markdown

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,17 @@ Once you have enabled the [Ring component](/components/ring), add the following
2121
# Example configuration.yaml entry
2222
sensor:
2323
- platform: ring
24-
monitored_conditions:
25-
- battery
26-
- last_activity
27-
- last_ding
28-
- last_motion
29-
- volume
3024
```
3125
3226
Configuration variables:
3327
34-
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
28+
- **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.
3529
- **battery**: Return the battery level from device
36-
- **last_activity**: Return the timestamp from the last event captured (ding/motion/on_demand) by the Ring doorbell camera
30+
- **last_activity**: Return the timestamp from the last event captured (ding/motion/on demand) by the Ring doorbell camera
3731
- **last_ding**: Return the timestamp from the last time the Ring doorbell button was pressed
3832
- **last_motion**: Return the timestamp from the last motion event captured by the Ring doorbell camera
39-
- **volume**: Return the volume level from the device. Currently supported by external chimes and doorbells.
33+
- **volume**: Return the volume level from the device.
34+
- **wifi_signal_category**: Return the WiFi signal level from the device.
35+
- **wifi_signal_strength**: Return the WiFi signal strength (dBm) from the device.
4036
41-
Currently it supports doorbells and external chimes only.
37+
Currently it supports doorbell, external chimes and stickup cameras.

0 commit comments

Comments
 (0)