raspberry_pi_pico/test.py
2025-01-20 16:39:29 +08:00

7 lines
121 B
Python

from machine import Pin
from time import sleep
myLED = Pin('LED', Pin.OUT)
while True:
myLED.toggle()
sleep(0.4)