home-assistant.io/source/_components/binary_sensor.android_ip_webcam.markdown
Alok Saboo 1aca7b08cf Misc fixes: e.g. -> e.g., and proper case for Home Assistant (#4942)
* e.g. to e.g., and proper case for Home Assistant

* Instructions how to -> Instructions on how to
2018-03-17 20:20:37 +01:00

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 %}