diff --git a/button/button.py b/button/button.py index a7e1010..63bd079 100644 --- a/button/button.py +++ b/button/button.py @@ -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)