from machine import Pin
from utime import sleep
import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Noy!")
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)from machine import Pin
from utime import sleep
import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Noy!")
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)