You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
281 B

# import board
# import digitalio
# import time
#
# led = digitalio.DigitalInOut(board.LED)
# led.direction = digitalio.Direction.OUTPUT
#
# while True:
# print("Hello, CircuitPython!")
# led.value = True
# time.sleep(0.1)
# led.value = False
# time.sleep(0.1)