From 156edc6cff8a24dba4160413d3db5a1c5eb4f0ee Mon Sep 17 00:00:00 2001 From: Marcelo Moreira de Mello Date: Tue, 1 Aug 2017 15:16:24 -0400 Subject: [PATCH] Added example of Arlo service camera.enable_motion_detection (#3107) --- source/_components/arlo.markdown | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/_components/arlo.markdown b/source/_components/arlo.markdown index ec67022b6ad..6556ef17b71 100644 --- a/source/_components/arlo.markdown +++ b/source/_components/arlo.markdown @@ -32,3 +32,17 @@ Configuration variables: It is recommended to create a dedicated user on Arlo website to be used within Home Assistant and then share your Arlo cameras. Finish its configuration by visiting the [Arlo sensor page](/components/sensor.arlo/) or [Arlo camera page](/components/camera.arlo/). + +The Arlo component also provides a service to enable/disable the motion detection sensor. The example below enables the motion detection every time the Home Assistant service starts. + +```yaml +#automation.yaml +- alias: Enable Arlo upton HA start' + initial_state: 'on' + trigger: + platform: homeassitant + event: start + action: + service: camera.enable_motion_detection + entity_id: camera.arlo_frontdoor +```