Skip to content

Commit f1b1ac8

Browse files
MisterWilMartinHjelmare
authored andcommitted
Added documentation for Skybell (home-assistant#3511)
* Added documentation for Skybell * Changed release version from 0.55 to 0.56 * All the blank lines * Stray tab
1 parent dea9e22 commit f1b1ac8

7 files changed

+179
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: page
3+
title: "Skybell Binary Sensor"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Binary Sensor
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Skybell.com](https://skybell.com/) binary sensors working within Home Assistant, please follow the instructions for the general [Skybell component](/components/skybell).
17+
18+
Once you have enabled the [Skybell component](/components/skybell), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
binary_sensor:
23+
- platform: skybell
24+
monitored_conditions:
25+
- button
26+
- motion
27+
```
28+
29+
Configuration variables:
30+
31+
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
32+
- **button**: Return a boolean value when the doorbell button was pressed.
33+
- **motion**: Return a boolean value when movement was detected by the Skybell doorbell.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: page
3+
title: "Skybell Camera"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Camera
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Skybell.com](https://skybell.com/) cameras working within Home Assistant, please follow the instructions for the general [Skybell component](/components/skybell).
17+
18+
Once you have enabled the [Skybell component](/components/skybell), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
camera:
23+
- platform: skybell
24+
```
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: page
3+
title: "Skybell Light"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Light
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Skybell.com](https://skybell.com/) LED light working within Home Assistant, please follow the instructions for the general [Skybell component](/components/skybell).
17+
18+
Once you have enabled the [Skybell component](/components/skybell), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
light:
23+
- platform: skybell
24+
```
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
layout: page
3+
title: "Skybell Sensor"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Sensor
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Skybell.com](https://skybell.com/) sensors working within Home Assistant, please follow the instructions for the general [Skybell component](/components/skybell).
17+
18+
Once you have enabled the [Skybell component](/components/skybell), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
sensor:
23+
- platform: skybell
24+
monitored_conditions:
25+
- chime_level
26+
```
27+
28+
Configuration variables:
29+
30+
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
31+
- **chime_level**: Return a value between 0-3, indicating no chime, low, medium, and high respectively.

source/_components/skybell.markdown

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: page
3+
title: "Skybell"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Hub
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
The `skybell` implementation allows you to integrate your [Skybell.com](https://skybell.com) doorbells in Home Assistant.
17+
18+
Currently only the Skybell HD is supported by this platform.
19+
20+
To enable devices set up with your [Skybell.com](https://skybell.com/) account, add the following to your `configuration.yaml` file:
21+
22+
```yaml
23+
# Example configuration.yaml entry
24+
skybell:
25+
username: you@example.com
26+
password: secret
27+
```
28+
29+
Configuration variables:
30+
31+
- **username** (*Required*): The username for accessing your Skybell account.
32+
- **password** (*Required*): The password for accessing your Skybell account.
33+
34+
Finish your configuration by visiting the [Skybell binary sensor](/components/binary_sensor.skybell/), [Skybell camera](/components/camera.skybell/), [Skybell light](/components/light.skybell/), [Skybell sensor](/components/sensor.skybell/), or [Skybell switch](/components/switch.skybell/) documentation.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: page
3+
title: "Skybell Switch"
4+
description: "Instructions on how to integrate your Skybell HD devices within Home Assistant."
5+
date: 2017-10-03 16:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: skybell.png
11+
ha_category: Switch
12+
ha_release: 0.56
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
To get your [Skybell.com](https://skybell.com/) switches working within Home Assistant, please follow the instructions for the general [Skybell component](/components/skybell).
17+
18+
Once you have enabled the [Skybell component](/components/skybell), add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
switch:
23+
- platform: skybell
24+
monitored_conditions:
25+
- do_not_disturb
26+
- motion_sensor
27+
```
28+
29+
Configuration variables:
30+
31+
- **monitored_conditions** array (*Required*): Conditions to display in the frontend. The following conditions can be monitored.
32+
- **do_not_disturb**: Control the state of your doorbells indoor chime.
33+
- **motion_sensor**: Control the state of your doorbells motion sensor.
21.7 KB
Loading

0 commit comments

Comments
 (0)