Commit 8532361a authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Tries to implement switch_on in mux_2024

Showing with 2 additions and 2 deletions
+2 -2
...@@ -4,8 +4,8 @@ change_config('config_ohmpi_card_3_15.py', verbose=False) ...@@ -4,8 +4,8 @@ change_config('config_ohmpi_card_3_15.py', verbose=False)
from OhmPi.hardware_components.mux_2024_rev_0_0 import Mux, MUX_CONFIG from OhmPi.hardware_components.mux_2024_rev_0_0 import Mux, MUX_CONFIG
from OhmPi.hardware_components import raspberry_pi as controller_module from OhmPi.hardware_components import raspberry_pi as controller_module
print(MUX_CONFIG) MUX_CONFIG['controller'] = controller_module.Controller()
mux = Mux({'controller': controller_module.Controller()}) mux = Mux(MUX_CONFIG)
mux.switch_one(elec=1, role='M', state='on') mux.switch_one(elec=1, role='M', state='on')
time.sleep(2) time.sleep(2)
mux.switch_one(elec=1, role='M', state='off') mux.switch_one(elec=1, role='M', state='off')
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment