home-assistant.io/source/_components/binary_sensor.android_ip_webcam.markdown
Jorim Tielemans a52f37c913 Remove empty lines and trailing spaces (#6978)
Add missing titles and empty lines
Fix variable type and missing defaults
2018-10-20 12:55:45 +02: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 Android IP webcam 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 %}