mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-28 13:57:04 +00:00

* doorbird live_view option
* Change Doorbird binary sensor to Local Push after code change
* Document DoorBird events
* Remove DoorBird camera options 2d7d1d72e5
38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
---
|
|
layout: page
|
|
title: "DoorBird"
|
|
description: "Instructions on how to integrate your DoorBird video doorbell with Home Assistant."
|
|
date: 2017-08-06 11:30
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: doorbird.png
|
|
ha_category: Hub
|
|
ha_release: "0.54"
|
|
ha_iot_class: "Local Polling"
|
|
---
|
|
|
|
The `doorbird` implementation allows you to integrate your [DoorBird](http://www.doorbird.com/) device in Home Assistant.
|
|
|
|
To connect your device, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
doorbird:
|
|
host: IP_OR_HOSTNAME
|
|
username: abcdef0001
|
|
password: xxxxxxxxxx
|
|
```
|
|
|
|
Configuration variables:
|
|
|
|
- **host** (*Required*): The LAN IP address or hostname of your device. You can find this by going to the [DoorBird Online check](http://www.doorbird.com/checkonline) and entering the information from the paper that was included in the box.
|
|
- **username** (*Required*): The username of a non-administrator user account on the device.
|
|
- **password** (*Required*): The password for the user specified.
|
|
- **doorbell_events** (*Optional*): Setting this to `true` this will register a callback URL with the device so that events can be published to the event bus when the doorbell rings.
|
|
|
|
<p class="note warning">
|
|
Enabling `doorbell_events` will delete all other registered push notification services with the device every time Home Assistant starts. This will not affect notifications delivered by the DoorBird mobile app.
|
|
</p>
|