some teste

This commit is contained in:
2021-12-14 18:40:13 +01:00
commit 508e8c4f79

View File

@@ -0,0 +1,8 @@
from machine import Pin
import time
while 1:
p2 = Pin(2,Pin.OUT, value=1)
time.sleep(1)
p2 = Pin(2,Pin.OUT, value=0)
time.sleep(1)