From 22d5efe1e0b24a4a4e1514a514698e39abb123e4 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Wed, 26 Apr 2023 16:54:16 +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 657e0bc7..becef120 100644 --- a/test_mux_2024.py +++ b/test_mux_2024.py @@ -12,4 +12,5 @@ mux.switch_one(elec=1, role='M', state='off') mux.switch({'A': [1], 'B': [4], 'M': [2], 'N': [3]}, state='on') time.sleep(4) mux.switch({'A': [1], 'B': [4], 'M': [2], 'N': [3]}, state='off') +mux.test({'A': [1, 2, 3, 4], 'B': [4, 5, 6, 7], 'M': [2, 3, 4, 5], 'N': [3, 4, 5, 6]}) change_config('config_default.py', verbose=False) -- GitLab