From 32060351983d38145444758ea09499019bed700e Mon Sep 17 00:00:00 2001 From: Vincent Hanewinkel Date: Thu, 14 Aug 2025 20:52:39 +0200 Subject: [PATCH] try fix --- Controll.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Controll.py b/Controll.py index 86bf640..20273b8 100644 --- a/Controll.py +++ b/Controll.py @@ -10,13 +10,15 @@ sess.add_all() controllers = {dev.serial: DeviceController(dev) for dev in sess.devices} serials = list(controllers.keys()) +startGUI() + for i, serial in enumerate(serials): c = controllers[serial] c.set_mode(0, pysmu.Mode.SIMV) # CH A Hi-Z c.set_mode(1, pysmu.Mode.HI_Z) # CH B Hi-Z MainWindow.add_list_item(MainWindow, serials[i], i, c.start, c.stop) -startGUI() + # # Beispiel: Gerät 1 starten, Gerät 2 später starten/stoppen