micropython-examples/button/button.py

11 lines
205 B
Python
Raw Normal View History

2021-06-17 07:51:13 +00:00
from machine import Pin
from time import sleep
2021-12-05 09:31:22 +00:00
button = Pin(22, Pin.IN, Pin.PULL_UP) #D7
button2 = Pin(23, Pin.IN, Pin.PULL_UP) #d5
2021-06-17 07:51:13 +00:00
while True:
print(button.value(), button2.value())
2021-12-05 09:31:22 +00:00
sleep(0.1)
2021-06-17 07:51:13 +00:00