From d507c19e7985d19f7055af03e7261b145d489e18 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Thu, 11 Sep 2025 14:36:17 +0200 Subject: [PATCH] Daq - models: added two zooms to auto loop centering and changed gain and exposure values. --- common/src/aaredaqlib/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/aaredaqlib/models.py b/common/src/aaredaqlib/models.py index 02530f16..6381eda7 100644 --- a/common/src/aaredaqlib/models.py +++ b/common/src/aaredaqlib/models.py @@ -450,7 +450,10 @@ def def_loop_centering_zoom() -> LoopCenteringZoomModel: return LoopCenteringZoomModel( z=[ LoopCenteringZoomModelElem( - zoom_value=280, sam_cam_gain=50.0, sam_cam_exp=0.10 + zoom_value=1, sam_cam_gain=50.0, sam_cam_exp=0.05, + ), + LoopCenteringZoomModelElem( + zoom_value=280, sam_cam_gain=50.0, sam_cam_exp=0.05, ) ] )