7 lines
121 B
Python
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) |