Advertisement
orborbson

wieloklik

Aug 12th, 2024 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.79 KB | Source Code | 0 0
  1. from machine import TouchPad, Pin, Timer
  2. import time, gc
  3.  
  4. # sczytuje wartość z pinu po dotknięciu
  5. def touch(pin = TouchPad(Pin(27))):
  6.     time.sleep_ms(10)
  7.     return True if pin.read() < 400 else False
  8.  
  9. # określenie liczby kliknięć
  10. def klikacz(x):
  11.     global stat
  12.     klik = licz - stat
  13.     if klik == 1:
  14.         print("klik x1")
  15.     elif klik == 2:
  16.         print("klik x2")
  17.     elif klik == 3:
  18.         print("klik x3")
  19.     else:
  20.         print("kliknąłeś powyżej 3")
  21.     stat = licz
  22.    
  23. tim = Timer(0)
  24. licz = stat = 0
  25. stan = None
  26.  
  27. while True:
  28.     przycisk = touch()
  29.     if stan != przycisk:
  30.         if przycisk:
  31.             gc.collect()
  32.             tim.init(period = 250, mode = Timer.ONE_SHOT, callback = klikacz)
  33.             licz += 1
  34.         stan = przycisk
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement