4f1b7fec9f
Refactored some stmhal files which are shared with teensy.
14 lines
131 B
Python
14 lines
131 B
Python
print("Executing main.py")
|
|
|
|
led = pyb.LED(1)
|
|
|
|
led.on()
|
|
pyb.delay(100)
|
|
led.off()
|
|
pyb.delay(100)
|
|
led.on()
|
|
pyb.delay(100)
|
|
led.off()
|
|
|
|
|