Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from machine import TouchPad, Pin, Timer
- import time, gc
- # sczytuje wartość z pinu po dotknięciu
- def touch(pin = TouchPad(Pin(27))):
- time.sleep_ms(10)
- return True if pin.read() < 400 else False
- # określenie liczby kliknięć
- def klikacz(x):
- global stat
- klik = licz - stat
- if klik == 1:
- print("klik x1")
- elif klik == 2:
- print("klik x2")
- elif klik == 3:
- print("klik x3")
- else:
- print("kliknąłeś powyżej 3")
- stat = licz
- tim = Timer(0)
- licz = stat = 0
- stan = None
- while True:
- przycisk = touch()
- if stan != przycisk:
- if przycisk:
- gc.collect()
- tim.init(period = 250, mode = Timer.ONE_SHOT, callback = klikacz)
- licz += 1
- stan = przycisk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement