69661f3343
This is run with uncrustify 0.70.1, and black 19.10b0.
14 lines
141 B
Python
14 lines
141 B
Python
import pyb
|
|
|
|
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()
|