Hello, folks.
I’m using my old Android phone with Android IP Webcam setup as one of the home cameras. Works well.
The problem I’m getting is with the motion sensor response time. The graphs in the Android IP Webcam web UI show the response to motion, however, home assistant gets a trigger within (probably) 5s. I set it up using the following from the above link.
# Example configuration.yaml entry
binary_sensor:
- platform: rest
name: Garage Motion
device_class: motion
resource: http://IP_ADDRESS:PORT/sensors.json?sense=motion_active
value_template: "{{ value_json.motion_active.data[0][1][0] | round(0) }}"
Any ideas on how to increase the refresh time to make it more real-time?
Thanks in advance.