mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-01 08:47:35 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
1.0 KiB
1.0 KiB
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | Android IP Webcam Binary Sensor | Instructions on how to integrate binary motion sensors for Android IP webcam within Home Assistant. | 2017-03-10 00:00 | true | false | true | true | android_ip_webcam.png | Binary Sensor | 0.40 | Local Polling |
The android_ip_webcam
binary sensor platform lets you observe the motion state of Android IP webcam sensors through Home Assistant.
Devices will be configured automatically. Please refer to the component configuration on how to setup.
{% linkable_title Examples %}
You can also setup the binary motion sensor with the following script:
{% raw %}
binary_sensor:
- platform: rest
name: Kitchen Motion
sensor_class: motion
resource: http://IP:8080/sensors.json?sense=motion_active
value_template: '{{ value_json.motion_active.data[0][1][0] | round(0) }}'
{% endraw %}