1.9 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Arlo | Instructions on how to integrate your Netgear Arlo cameras within Home Assistant. | 2017-05-30 10:00 | true | false | true | true | arlo.png | Hub | 0.46 | Cloud Polling |
The arlo
implementation allows you to integrate your Arlo devices in Home Assistant.
{% linkable_title Configuration %}
To enable device linked in your Arlo account, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
arlo:
username: YOUR_USERNAME
password: YOUR_PASSWORD
{% configuration %} username: description: The username for accessing your Arlo account. required: true type: string password: description: The password for accessing your Arlo account. required: true type: string scan_interval: description: How frequently to query for new data. Defaults to 60 seconds. required: false type: int {% endconfiguration %}
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 or Arlo camera page or Arlo control panel page. Arlo also has a service call arlo.update
that can be manually called to force an update prior to the regular scheduled interval.
The Arlo component also provides a camera service to enable/disable the motion detection sensor. The example below enables the motion detection every time the Home Assistant service starts.
#automation.yaml
- alias: Enable Arlo upon HA start'
initial_state: 'on'
trigger:
platform: homeassistant
event: start
action:
service: camera.enable_motion_detection
entity_id: camera.arlo_frontdoor