From 2b4369dbd905faced16a6a14c42a175ee46e0241 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Wed, 26 Apr 2023 16:18:24 +0200 Subject: [PATCH] Tries to implement switch_on in mux_2024 --- test_mux_2024.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test_mux_2024.py b/test_mux_2024.py index 9b6c8131..dc0e48b6 100644 --- a/test_mux_2024.py +++ b/test_mux_2024.py @@ -9,4 +9,5 @@ mux = Mux(**MUX_CONFIG) mux.switch_one(elec=1, role='M', state='on') time.sleep(2) mux.switch_one(elec=1, role='M', state='off') +mux.switch({'A': [1], 'B': [4], 'M': [2], 'N': [3]}) change_config('config_default.py', verbose=False) -- GitLab