TL,DR: How can I configure my camera to switch between day and night profile based on light level, but prevent it from continually switching between profiles at the day/night interface?
IP4M-1051; V2.620.00AC000.3.R, Build Date: 2019-09-19
I've currently set my camera to automatically switch from day to night and vice-versa like so :
But this means that every dawn and dusk, it will continually switch from one profile to the other and then back again before settling on the 'correct' one. On overcast days, this can go on for 15 minutes, and every couple of switches, a motion-detection alert is sent. I have tried varying sensitivity from 0 to 7, but I've noticed no major difference.
How would I configure it to stay in day profile for as long as possible in the evening; and switch to day profile as soon as possible in the morning? (Note, I cannot update the firmware, since I'm relying on a quirk in this version).
Bonus question : What is the difference between 'mechanism' and 'electron'? The API offers no information.
Thanks for any advice!
IP4M-1051; V2.620.00AC000.3.R, Build Date: 2019-09-19
I've currently set my camera to automatically switch from day to night and vice-versa like so :
Code:
curl --globoff -u admin:password --digest ^"http://192.168.1.36/cgi-bin/configManager.cgi?action=setConfig^
&VideoInOptions[0].NightOptions.SwitchMode=1^
&VideoInOptions[0].NightOptions.Profile=3^
&VideoInDayNight[0][0].Type=Mechanism^
&VideoInDayNight[0][0].Mode=Photoresistor^
&VideoInDayNight[0][0].Sensitivity=0^
&VideoInDayNight[0][0].Delay=10^
&VideoInDayNight[0][1].Type=Mechanism^
&VideoInDayNight[0][1].Mode=Photoresistor^
&VideoInDayNight[0][1].Sensitivity=0^
&VideoInDayNight[0][1].Delay=10^
&VideoInDayNight[0][2].Type=Mechanism^
&VideoInDayNight[0][2].Mode=Photoresistor^
&VideoInDayNight[0][2].Sensitivity=0^
&VideoInDayNight[0][2].Delay=10"
But this means that every dawn and dusk, it will continually switch from one profile to the other and then back again before settling on the 'correct' one. On overcast days, this can go on for 15 minutes, and every couple of switches, a motion-detection alert is sent. I have tried varying sensitivity from 0 to 7, but I've noticed no major difference.
How would I configure it to stay in day profile for as long as possible in the evening; and switch to day profile as soon as possible in the morning? (Note, I cannot update the firmware, since I'm relying on a quirk in this version).
Bonus question : What is the difference between 'mechanism' and 'electron'? The API offers no information.
Thanks for any advice!