Hi Hutch07
oakL =OakCamera()
controls = {
'exposure':{
'manual': [10, 200]
},
}
leftL = oakL.create_camera('left', resolution='800p', fps=20)
rightL = oakL.create_camera('right', resolution='800p', fps=20)
imuL = oakL.create_imu()
imuL.config_imu(report_rate=100, batch_report_threshold=5)
oakL.visualize([leftL, rightL])
oakL.start(blocking=False)
while oakL.running():
leftL.control.send_controls(controls)
oakL.poll()
Or you can do it by do it with leftL.node.initialControl.setManualExposure(expos_start, iso_start)
This sets both cameras to the same settings
Thanks,
Jaka