import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Adrian!")
led = Pin(0, Pin.OUT) # If you didn’t use GP0, change 0 to the pin you used
while True:
led.toggle()
sleep(0.5)
import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Adrian!")
led = Pin(0, Pin.OUT) # If you didn’t use GP0, change 0 to the pin you used
while True:
led.toggle()
sleep(0.5)