From 92e39a5f7553f2825d85be7b089b9539f1eaed87 Mon Sep 17 00:00:00 2001 From: x01dc Date: Mon, 23 Feb 2026 12:35:56 +0100 Subject: [PATCH 1/2] minor adjmustment --- csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py | 7 ++----- csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py | 1 - 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py b/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py index 536d0e3..ec84191 100644 --- a/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py +++ b/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py @@ -210,13 +210,10 @@ class LamNI(LamNIOpticsMixin): self.feedback_status() def feedback_status(self): - if self.device_manager.devices.rtx.controller.feedback_is_running(): - print("The rt feedback is \x1b[92mrunning\x1b[0m.") - else: - print("The rt feedback is \x1b[91mNOT\x1b[0m running.") + self.device_manager.devices.rtx.controller.show_feedback_status() def show_interferometer_positions(self): - self.device_manager.devices.rtx.controller.show_interferometer_positions() + self.device_manager.devices.rtx.controller.show_feedback_status() def show_signal_strength(self): self.device_manager.devices.rtx.controller.show_signal_strength_interferometer() diff --git a/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py b/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py index 15a4d93..86a1b5b 100644 --- a/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py +++ b/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py @@ -65,7 +65,6 @@ class RtLamniController(Controller): "_position_sampling_single_read", "_position_sampling_single_reset_and_start_sampling", "show_signal_strength_interferometer", - "show_interferometer_positions", "show_analog_signals", "show_feedback_status", -- 2.49.1 From 38671f074e5b0cac251eb476ec7cc69d9faa7d2f Mon Sep 17 00:00:00 2001 From: x01dc Date: Mon, 23 Feb 2026 12:44:04 +0100 Subject: [PATCH 2/2] minor printout fix --- csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py | 1 + csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py b/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py index ec84191..855906a 100644 --- a/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py +++ b/csaxs_bec/bec_ipython_client/plugins/LamNI/lamni.py @@ -212,6 +212,7 @@ class LamNI(LamNIOpticsMixin): def feedback_status(self): self.device_manager.devices.rtx.controller.show_feedback_status() + def show_interferometer_positions(self): self.device_manager.devices.rtx.controller.show_feedback_status() diff --git a/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py b/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py index 86a1b5b..3e3df3c 100644 --- a/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py +++ b/csaxs_bec/devices/omny/rt/rt_lamni_ophyd.py @@ -67,7 +67,6 @@ class RtLamniController(Controller): "show_signal_strength_interferometer", "show_analog_signals", "show_feedback_status", - ] def __init__( -- 2.49.1