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