from machine import Pin, PWM
from utime import sleep
print("Hello, Raspberry Pi Pico!")
#led1 = Pin(5, Pin.OUT)
#led2 = Pin(6, Pin.OUT)
led = Pin(5, Pin.OUT)
while True:
led.toggle()
sleep(0.5)
from machine import Pin, PWM
from utime import sleep
print("Hello, Raspberry Pi Pico!")
#led1 = Pin(5, Pin.OUT)
#led2 = Pin(6, Pin.OUT)
led = Pin(5, Pin.OUT)
while True:
led.toggle()
sleep(0.5)