new file:   test01.py
This commit is contained in:
Tomas Krejci 2024-05-13 22:26:33 +02:00
parent bc32cc5e30
commit 34c468f3da

9
test01.py Normal file
View File

@ -0,0 +1,9 @@
from machine import Pin
from time import sleep
led = Pin('LED', Pin.OUT)
print('Blinking LED Example')
while True:
led.value(not led.value())
sleep(0.5)