Skip to content

Commit 800e284

Browse files
brooxfrenck
authored andcommitted
Add more detailed Arlo base station docs (home-assistant#4092)
* add some Arlo base station docs * a bit more context
1 parent 45a5847 commit 800e284

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

source/_components/alarm_control_panel.arlo.markdown

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ha_iot_class: "Cloud Polling"
1414
---
1515

1616

17-
The `arlo` control panel platform allows you to control your [Arlo](https://arlo.netgear.com/) base stations.
17+
The `arlo` alarm control panel allows you to control your [Arlo](https://arlo.netgear.com/) base stations. You can use it to switch modes and trigger alarms from Home Assistant.
1818

1919
To get your [Arlo](https://arlo.netgear.com/) base stations working within Home Assistant, please follow the instructions for the general [Arlo component](/components/arlo).
2020

@@ -29,3 +29,41 @@ alarm_control_panel:
2929
Configuration variables:
3030
3131
- **home_mode_name**: (*Optional*): Arlo base station does not have a built-in home mode. You can map one of your custom modes to home assistant's home mode by setting the name of the custom mode in this configuration variable. The name of the custom mode should match exactly as you set it up in the Arlo app.
32+
33+
## {% linkable_title Examples %}
34+
35+
These examples are based on an Arlo base station named `my_arlo_base_station`. Replace this with the name of your base station's `entity_id`.
36+
37+
Arming the Arlo Base Station when leaving.
38+
39+
```yaml
40+
- id: arm_arlo_when_leaving
41+
alias: Arm Arlo cameras when leaving
42+
trigger:
43+
platform: state
44+
entity_id: group.family
45+
from: home
46+
to: not_home
47+
action:
48+
service: alarm_control_panel.alarm_arm_away
49+
entity_id: alarm_control_panel.my_arlo_base_station
50+
```
51+
52+
Setting Arlo to a custom mode (mapped to `home_mode_name` in `configuration.yaml`) when arriving.
53+
54+
```yaml
55+
- id: disarm_arlo_when_arriving
56+
alias: Set Arlo cameras to Home mode when arriving
57+
trigger:
58+
platform: state
59+
entity_id: group.family
60+
from: not_home
61+
to: home
62+
action:
63+
service: alarm_control_panel.alarm_arm_home
64+
entity_id: alarm_control_panel.my_arlo_base_station
65+
```
66+
67+
You can also completely disarm the Arlo base station by calling the `alarm_control_panel.alarm_disarm` service, and trigger the alarm by calling the `alarm_control_panel.alarm_trigger` service.
68+
69+
More examples and configuration options can be found on the [Manual Alarm Control page](/components/alarm_control_panel.manual/#examples).

0 commit comments

Comments
 (0)