Matthew Guthaus
02/08/2023, 9:57 PM===================================================================
== LOW chain FAILED. Valid IO = 0 thru 00. ==
== HIGH chain PASSED. Valid IO = 19 thru 37. ==
===================================================================
Tim Edwards
02/08/2023, 10:06 PMmake run PART=xyz VOLTAGE=1.43
).Matthew Guthaus
02/08/2023, 10:06 PMTim Edwards
02/08/2023, 10:09 PMMatthew Guthaus
02/08/2023, 10:09 PMTim Edwards
02/08/2023, 10:23 PMMatthew Guthaus
02/08/2023, 10:24 PMTim Edwards
02/08/2023, 10:28 PMmpremote
and figuring out how to run the routines manually, so I can help.io_config.py
and nucleo_api.py
. What I do is, e.g.:
mpremote
from io_config import *
test = Test()
test.voltage = 1.8
test.powerup_sequence()
test.turn_off_devices()
The mpremote
is from the Linux command line, and the rest is from the Micropython prompt.Dio()
is also a useful command for configuring individual pins:
my_pin = Dio("IO_3", True)
my_pin.set_state(False)
my_pin.get_value()
Philipp Gühring
02/08/2023, 10:47 PMMatthew Guthaus
02/08/2023, 10:48 PMPhilipp Gühring
02/08/2023, 10:48 PMMatthew Guthaus
02/08/2023, 10:51 PMPhilipp Gühring
02/08/2023, 10:51 PMgatecat
02/09/2023, 6:13 AMTim Edwards
02/09/2023, 3:19 PM