Hi @GaryOkie, @MYeager1967,
I’ve had serious issues with IR, I think my issues are also compounded because I run it through BlueIris and whatever power issue this cam has, the problem is exacerbated with video streaming at night. I also block all traffic and Amcrest, like most almost all connected cameras will constantly send DNS queries. From what I’ve read, that’s part of the reason why it reboots on Tuesdays because that’s the only way it can get new AWS IP addresses for the camera’s cloud services, terribly implemented.
Anyway, since I keep this cam 100% offline, I disabled the auto reboot, you will need the latest available firmware but here’s the command:
http://[AD110 Cam IP]/cgi-bin/configManager.cgi?action=setConfig&AutoMaintain[0].AutoRebootEnable=false
Use this command to verify :
http://[AD110 Cam IP]/cgi-bin/configManager.cgi?action=getConfig&name=AutoMaintain
Auto reboot should now = false:
table.AutoMaintain.AutoRebootEnable=false
To largely remedy my issues with the IR rebooting stuff, I created a simple automation that is triggered by BlueIris via MQTT to send a topic/payload upon signal restoration alert.
Created a binary_sensor:
- platform: mqtt
name: "Doorbell Manual "
state_topic: "BI/doorbell"
payload_on: "OFF"
off_delay: 30
Created a command_line switch to change the IR mode:
- platform: command_line
switches:
doorbell_manual:
command_on: curl --digest -u "admin:pwd" "http://[AD110 Cam IP]/cgi-bin/configManager.cgi?action=setConfig&Lighting[0][0].Mode=Manual"
command_off: curl --digest -u "admin:pwd" "http://[AD110 Cam IP]cgi-bin/configManager.cgi?action=setConfig&Lighting[0][0].Mode=Manual"
Note: Manual
mode isn’t in the API from what I could tell but it works for me and somehow more stable than the other modes, mainly SmartLight
.
Automation:
- id: '123456789101'
alias: 'Turn on Manual Mode on Doorbell Cam '
description: 'Triggered through Binary Sensor on Signal Restoration '
trigger:
- platform: state
entity_id: binary_sensor.doorbell_manual
condition: []
action:
- service: homeassistant.turn_on
data: {}
entity_id: switch.doorbell_manual
mode: single
So far so good, especially since it’s starting to get really dark very early around my parts. Hope this helps.