from machine import Pin
from time import sleep
myLED=Pin('LED',Pin.OUT)
while True:
myLED.value(1)
sleep(.1)
Loading
pi-pico-w
pi-pico-w
from machine import Pin
from time import sleep
myLED=Pin('LED',Pin.OUT)
while True:
myLED.value(1)
sleep(.1)