Add button example
This commit is contained in:
parent
98fd5f6742
commit
a5547b3b45
|
@ -0,0 +1,10 @@
|
|||
from machine import Pin
|
||||
from time import sleep
|
||||
|
||||
button = Pin(13, Pin.IN) #D7
|
||||
button2 = Pin(14, Pin.IN) #d5
|
||||
|
||||
while True:
|
||||
print(button.value(), button2.value())
|
||||
sleep(1)
|
||||
|
Loading…
Reference in New Issue