mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-06 02:06:48 +00:00
Multiple updates
This commit is contained in:
parent
618f2ce824
commit
ade1b67c2c
@ -15,6 +15,10 @@ ha_iot_class: "Local Push"
|
|||||||
|
|
||||||
The `doorbird` implementation allows you to integrate your [DoorBird](http://www.doorbird.com/) device in Home Assistant.
|
The `doorbird` implementation allows you to integrate your [DoorBird](http://www.doorbird.com/) device in Home Assistant.
|
||||||
|
|
||||||
|
## {% linkable_title Setup %}
|
||||||
|
|
||||||
|
The user, which you are going to use with Home Assistant, needs the "API-Operator" permission enabled.
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To connect your device, add the following to your `configuration.yaml` file:
|
To connect your device, add the following to your `configuration.yaml` file:
|
||||||
@ -22,20 +26,11 @@ To connect your device, add the following to your `configuration.yaml` file:
|
|||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
doorbird:
|
doorbird:
|
||||||
token: RANDOM_STRING
|
token: YOUR_DOORBIRD_TOKEN
|
||||||
devices:
|
devices:
|
||||||
- host: DOORBIRD_IP_OR_HOSTNAME
|
- host: DOORBIRD_IP_OR_HOSTNAME
|
||||||
username: YOUR_USERNAME
|
username: YOUR_USERNAME
|
||||||
password: YOUR_PASSWORD
|
password: YOUR_PASSWORD
|
||||||
hass_url_override: HASS_URL
|
|
||||||
name: Front Door
|
|
||||||
- host: DOORBIRD_IP_OR_HOSTNAME
|
|
||||||
username: YOUR_USERNAME
|
|
||||||
password: YOUR_PASSWORD
|
|
||||||
name: Driveway Gate
|
|
||||||
monitored_conditions:
|
|
||||||
- doorbell
|
|
||||||
- motion
|
|
||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
@ -53,7 +48,7 @@ devices:
|
|||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
username:
|
username:
|
||||||
description: The username of a non-administrator user account on the device. This user needs the "API-Operator" permission enabled on doorbird.
|
description: The username of a non-administrator user account on the device.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
password:
|
password:
|
||||||
@ -76,13 +71,35 @@ devices:
|
|||||||
doorbell:
|
doorbell:
|
||||||
description: Monitor doorbell events
|
description: Monitor doorbell events
|
||||||
motion:
|
motion:
|
||||||
description: Monitor motion events (Motion monitoring must be enabled on the doorstation via DoorBird app)
|
description: Monitor motion events (Motion monitoring must be enabled on the doorstation via DoorBird app).
|
||||||
|
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
The configuration above is also used by the following components:
|
The configuration above is also used by the following platforms:
|
||||||
- [Camera](../camera.doorbird) - View live and historical event based images
|
|
||||||
- [Switch](../switch.doorbird) - Enable control of relays and camera night vision
|
- [Camera](/components/camera.doorbird): View live and historical event based images.
|
||||||
|
- [Switch](/components/switch.doorbird): Enable control of relays and camera night vision.
|
||||||
|
|
||||||
|
|
||||||
|
## {% linkable_title Full example %}
|
||||||
|
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
doorbird:
|
||||||
|
token: YOUR_DOORBIRD_TOKEN
|
||||||
|
devices:
|
||||||
|
- host: DOORBIRD_IP_OR_HOSTNAME
|
||||||
|
username: YOUR_USERNAME
|
||||||
|
password: YOUR_PASSWORD
|
||||||
|
hass_url_override: HASS_URL
|
||||||
|
name: Front Door
|
||||||
|
- host: DOORBIRD_IP_OR_HOSTNAME
|
||||||
|
username: YOUR_USERNAME
|
||||||
|
password: YOUR_PASSWORD
|
||||||
|
name: Driveway Gate
|
||||||
|
monitored_conditions:
|
||||||
|
- doorbell
|
||||||
|
- motion
|
||||||
|
```
|
||||||
|
|
||||||
## {% linkable_title Motion and Doorbell Events %}
|
## {% linkable_title Motion and Doorbell Events %}
|
||||||
|
|
||||||
@ -104,6 +121,7 @@ The URLs on the event will be based on the configuration used to connect to your
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
### {% linkable_title Automation Example %}
|
### {% linkable_title Automation Example %}
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- alias: Doorbird Ring
|
- alias: Doorbird Ring
|
||||||
trigger:
|
trigger:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user