From 792f72cb22b3672c52dfa67139aabcf7c49622bb Mon Sep 17 00:00:00 2001 From: appleb_m Date: Fri, 29 May 2026 10:06:49 +0200 Subject: [PATCH] sam_cam: tempoarly removed auto white balance on daq start up, may be better to set to a specific value --- src/aare/devices/area_detector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/aare/devices/area_detector.py b/src/aare/devices/area_detector.py index 409e8a88..6074cfa3 100644 --- a/src/aare/devices/area_detector.py +++ b/src/aare/devices/area_detector.py @@ -70,7 +70,8 @@ class epicsAD(object): self.gain_max.put(settings.gain_max) self.exp_max.put(settings.exp_max) self.set_auto(AutoEnum.ONCE) - self.auto_white_balance.put(1) + #TODO add a white_balance button to GUI or set it so it happens with backlight in and on + #self.auto_white_balance.put(1) self.acquire.put(1) def get_image(self, gray=True) -> np.ndarray: