Skip to main content

How to switch the scene modes Custom mode#1 & Custom mode#2 based on Day or Night for Bosch cameras?

How do I switch the scene modes "Custom mode#1" & "Custom mode#2" based on Day/Night

Note: With fw7.70 a new feature was introduced that allows you to tune the scene for Day and Night separately using 2 custom scene modes.


Step-by-step guide:


1. Rename "Custom mode#1" & "Custom mode#2 to match the condition in which they will be used in, in our example we shall use Day and Night
Do this by selecting "Custom mode#1" as current mode and than overwrite the name at the "Mode ID" field

  • "Custom mode#1" > Day
  • "Custom mode#2" > Night



2. Configure the Scene modes "Day" and  "Night"
Select the scene mode "Day" and than go to "Picture settings" and configure, repeat this also for "Night"
Note that the correct mode is mentioned on top of the picture settings



3. Use the Scene Scheduler to use the Day/Night profile to change at specific times of the day.


4. Or use the ATSL script that will switch between modes as the camera automatically transitions between Day and Night mode

//Toggle Custom Modes when the camera goes In/Out of Auto Night Mode
//PreRequisite is to name Custom mode 1 as Day and configure day time settings; then name Custom Mode 2 as Night and configure night settings
BicomCommand cmdModeDay := { Server(CameraSrv) ObjectId(0x0200) Payload("0x0007") };
BicomCommand cmdModeNight := { Server(CameraSrv) ObjectId(0x0200) Payload("0x0008") };
if (NightMode) then cmdModeNight else cmdModeDay;



(warning) ATSL Documentation



JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.