2.3 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 Sensor | Instructions on how to integrate your Netgear Arlo cameras within Home Assistant. | 2017-05-30 10:00 | true | false | true | true | arlo.png | Sensor | 0.46 | Cloud Polling |
To get your Arlo sensors working within Home Assistant, please follow the instructions for the general Arlo component.
This platform does not support Arlo Q.
{% linkable_title Configuration %}
Once you have enabled the Arlo component, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
- platform: arlo
monitored_conditions:
- captured_today
- last_capture
- total_cameras
- battery_level
- signal_strength
Additionally, for Arlo Baby cameras that have additional sensors, you can add them to the monitored_conditions
collection:
# Additional sensors available for Arlo Baby cameras
sensor:
- platform: arlo
monitored_conditions:
# ...
- temperature
- humidity
- air_quality
{% configuration %} monitored_conditions: description: Conditions to display in the frontend. The following conditions can be monitored. required: false type: list keys: captured_today: description: Return the number of videos captured on the current day. last_capture: description: Return the timestamp from the last video captured by your Arlo camera. total_cameras: description: Return the number of recognized and active cameras linked on your Arlo account. battery_level: description: Return the battery level of your Arlo camera. signal_strength: description: Return the wireless signal strength of your Arlo camera. temperature: description: Return the ambient temperature detected by your Arlo Baby camera. humidity: description: Return the ambient relative humidity detected by your Arlo Baby camera. air_quality: description: Return the ambient air quality (a reading of volatile organic compounds (VOCs) in parts per million) detected by your Arlo Baby camera. {% endconfiguration %}
If no monitored_conditions are specified, all of above will be enabled by default.