Problem SOLVED!
mikb wrote: ↑Thu Sep 17, 2020 3:58 pm
Yes, it needs more hysteresis, it's not rocket science. Automated "dusk lights" have to figure this stuff out so they don't switch themselves off, by switching on ...

So camera manufacturers really should have fixed this!
Absolutely, what I needed is hysteresis, but now I'll settle for a cron job.
It turns out that the chap from Axis technical support is not entirely capable, but he gives me sufficient clues to allow me fooling around here and there. He didn't even give me any documentation, but Google Search saves the day! I'm asking him to give me an up-to-date version of that document.
These work for me.
Code: Select all
http://user:password@camera/axis-cgi/param.cgi?action=list&group=root.ImageSource.I0.DayNight.IrCutFilter
http://user:password@camera/axis-cgi/param.cgi?action=update&root.ImageSource.I0.DayNight.IrCutFilter=auto
http://user:password@camera/axis-cgi/param.cgi?action=update&root.ImageSource.I0.DayNight.IrCutFilter=yes
http://user:password@camera/axis-cgi/param.cgi?action=update&root.ImageSource.I0.DayNight.IrCutFilter=no
The most frustrating thing is that the valid values for IrCutFilter parameter are actually auto/yes/no instead of Auto/On/Off as in the web interface.
Thinking aloud works.
mikb wrote: ↑Thu Sep 17, 2020 3:58 pm
As to your cron jobs, that's one way to resolve it, although you might want to look at the ingenious "sunwait" which will give you a more accurate switching time based on your location and timezone!
https://risacher.org/sunwait/
Surely, sunwait is the next thing I'll do. But when a star destroyer arrives me during daytime or a supernova explodes during night time, I won't have the correct camera setting to capture the events.
Ta.
--- * --- * ---
Update on 18 Sep. Just in case someone else might have the same problem that I had, here is my cron job.
Code: Select all
00 19 * * * (echo -n `date`; echo -n "\tTurn IR Filter OFF \t"; curl --request GET 'http://user:password@camera/axis-cgi/param.cgi?action=update&root.ImageSource.I0.DayNight.IrCutFilter=no' ; echo) >> ~/foo/bar/cron_ircutfilter.log
01 19 * * * (echo -n `date`; echo -n "\tAsk IR Filter status\t"; curl --request GET 'http://user:password@camera/axis-cgi/param.cgi?action=list&group=root.ImageSource.I0.DayNight.IrCutFilter' ) >> ~/foo/bar/cron_ircutfilter.log
00 05 * * * (echo -n `date`; echo -n "\tTurn IR Filter ON \t"; curl --request GET 'http://user:password@camera/axis-cgi/param.cgi?action=update&root.ImageSource.I0.DayNight.IrCutFilter=yes'; echo) >> ~/foo/bar/cron_ircutfilter.log
01 05 * * * (echo -n `date`; echo -n "\tAsk IR Filter status\t"; curl --request GET 'http://user:password@camera/axis-cgi/param.cgi?action=list&group=root.ImageSource.I0.DayNight.IrCutFilter' ) >> ~/foo/bar/cron_ircutfilter.log
In order to use sunwait, I need to have a cron job to change another cron job. Um ... that's perverse.
--- * --- * ---
Update on 25 Sept. I change my mind. I can actually have a daily cron job to run two at jobs at a time. That's less messy. It is useful to think aloud.