2014-05-04 13:07:17 -04:00
|
|
|
# boot.py -- runs on boot-up
|
|
|
|
# Let's you choose which script to run.
|
|
|
|
# > To run 'datalogger.py':
|
|
|
|
# * press reset and do nothing else
|
|
|
|
# > To run 'cardreader.py':
|
|
|
|
# * press reset
|
|
|
|
# * press user switch and hold until orange LED goes out
|
|
|
|
|
|
|
|
import pyb
|
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
pyb.LED(3).on() # indicate we are waiting for switch press
|
|
|
|
pyb.delay(2000) # wait for user to maybe press the switch
|
|
|
|
switch_value = pyb.Switch()() # sample the switch at end of delay
|
|
|
|
pyb.LED(3).off() # indicate that we finished waiting for the switch
|
2014-05-04 13:07:17 -04:00
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
pyb.LED(4).on() # indicate that we are selecting the mode
|
2014-05-05 09:09:23 -04:00
|
|
|
|
|
|
|
if switch_value:
|
2020-02-26 23:36:53 -05:00
|
|
|
pyb.usb_mode("VCP+MSC")
|
|
|
|
pyb.main("cardreader.py") # if switch was pressed, run this
|
2014-05-04 13:07:17 -04:00
|
|
|
else:
|
2020-02-26 23:36:53 -05:00
|
|
|
pyb.usb_mode("VCP+HID")
|
|
|
|
pyb.main("datalogger.py") # if switch wasn't pressed, run this
|
2014-05-04 13:07:17 -04:00
|
|
|
|
2020-02-26 23:36:53 -05:00
|
|
|
pyb.LED(4).off() # indicate that we finished selecting the mode
|