Use pins 22 & 23
This commit is contained in:
parent
eb9b7ba225
commit
d32add571f
|
@ -1,10 +1,10 @@
|
|||
from machine import Pin
|
||||
from time import sleep
|
||||
|
||||
button = Pin(13, Pin.IN) #D7
|
||||
button2 = Pin(14, Pin.IN) #d5
|
||||
button = Pin(22, Pin.IN, Pin.PULL_UP) #D7
|
||||
button2 = Pin(23, Pin.IN, Pin.PULL_UP) #d5
|
||||
|
||||
while True:
|
||||
print(button.value(), button2.value())
|
||||
sleep(1)
|
||||
sleep(0.1)
|
||||
|
||||
|
|
Loading…
Reference in New Issue