Joe Public,
This is exactly what I need. Thanks! I noticed that many of the commands listed in the pdf (for example, the command to get an event handler) do not seem to be implemented for the 2230 -- unless I am doing something wrong. However, I can easily turn off an event triggered by motion, for example, by using the command:
IPCamAddress:port/config/motion.cgi?enable=no
Disabling the motion trigger would in effect disable the event. I did not see a comparable command for disabling the built-in PIR sensor, but maybe I need to read the document more carefully. Again, thanks for providing this information.
Do you mean ICR / IR LIGHT options normally included in web management under "Advanced -> ICR and IR" menu item?
If yes, for ICR you have to use "/config/icr.cgi", while for IR light you have to use "/config/irled.cgi".
Regarding ICR returned values, I've checked:
mode=auto just means "ICR -> automatic"
mode=on just means "ICR -> day mode"
mode=off just means "ICR -> night mode"
mode=schedule just means "ICR -> Schedule mode"
Regarding IR LIGHT returned values, I've checked:
mode=off just means "IR Light Control -> Off"
mode=on just means "IR Light Control -> On"
mode=auto just means "IR Light Control -> Sync with ICR"
mode=schedule just means "IR Light Control -> Schedule mode"
To set the schedule mode, you have to use:
/config/xxxxxx.cgi?mode=schedule&starttime=time&endtime=time
For example to set the schedule mode for IR LIGHT from 15:00 to 07:00:
config/irled.cgi?mode=schedule&starttime=15:00&endtime=07:00
Hope may help you.