From 34a20e0da3d5d0c9ce22fa05a3ba070583b3e693 Mon Sep 17 00:00:00 2001 From: Matt Snyder Date: Mon, 26 Nov 2018 15:34:46 -0600 Subject: [PATCH 1/3] Update documentation for relay events. --- source/_components/doorbird.markdown | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/_components/doorbird.markdown b/source/_components/doorbird.markdown index db6cbd8444bb..c392a076b5cd 100644 --- a/source/_components/doorbird.markdown +++ b/source/_components/doorbird.markdown @@ -72,6 +72,9 @@ devices: description: Monitor doorbell events motion: description: Monitor motion events (Motion monitoring must be enabled on the doorstation via DoorBird app). + relay: + description: Monitor relay events. This event is fired even if a relay is not physically connected to the door station. Can be used to lock/unlock any smart lock present in Home Assistant via the Doorbird app. + {% endconfiguration %} The configuration above is also used by the following platforms: @@ -101,9 +104,9 @@ doorbird: - motion ``` -## {% linkable_title Motion and Doorbell Events %} +## {% linkable_title Events %} -Home Assistant will fire an event any time a `monitored_condition` happens on a doorstation. Event names are created using the format `doorbird_{station}_{event}` (Examples: `doorbird_side_entry_button`, `doorbird_side_entry_motion`). You can verify the assigned event names in the Home Assistant log file. +Home Assistant will fire an event any time a `monitored_condition` happens on a doorstation. Event names are created using the format `doorbird_{station}_{event}` (Examples: `doorbird_side_entry_button`, `doorbird_side_entry_motion`). You can verify the assigned event names in the Available Events list on the Events developer view.

Home Assistant will register the monitored conditions with the device as schedule entries that correspond to favorites on startup. If you remove monitored conditions from your configuration, Home Assistant will attempt to remove these items from the device. However, in some cases, such as if the IP address of the machine running Home Assistant changes or if the device is renamed in your configuration, this will not work correctly and some data will be left in device storage. From 2383ae2f88521e7e499af6d67921788e14ae6f32 Mon Sep 17 00:00:00 2001 From: Matt Snyder Date: Mon, 26 Nov 2018 15:37:28 -0600 Subject: [PATCH 2/3] Add config example. --- source/_components/doorbird.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/source/_components/doorbird.markdown b/source/_components/doorbird.markdown index c392a076b5cd..e7e7eadfb827 100644 --- a/source/_components/doorbird.markdown +++ b/source/_components/doorbird.markdown @@ -102,6 +102,7 @@ doorbird: monitored_conditions: - doorbell - motion + - relay ``` ## {% linkable_title Events %} From 5f216a76702d5d3fec2e8439976a725090c1508b Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 26 Dec 2018 15:50:49 +0100 Subject: [PATCH 3/3] :pencil2: Tweak --- source/_components/doorbird.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/doorbird.markdown b/source/_components/doorbird.markdown index e7e7eadfb827..d833d927449d 100644 --- a/source/_components/doorbird.markdown +++ b/source/_components/doorbird.markdown @@ -73,7 +73,7 @@ devices: motion: description: Monitor motion events (Motion monitoring must be enabled on the doorstation via DoorBird app). relay: - description: Monitor relay events. This event is fired even if a relay is not physically connected to the door station. Can be used to lock/unlock any smart lock present in Home Assistant via the Doorbird app. + description: Monitor relay events. This event is fired even if a relay is not physically connected to the door station. Can be used to lock/unlock any smart lock present in Home Assistant via the Doorbird app. {% endconfiguration %}