Advertisement
orborbson

wieloklik2

Aug 13th, 2024 (edited)
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | Source Code | 0 0
  1. from machine import Pin, Timer
  2. import gc
  3.  
  4. def klikacz(x):
  5.     global stat
  6.     print("Kliknąłeś %ix" % (licz - stat))
  7.     stat = licz
  8.  
  9. def touch(x):
  10.     global licz, tim
  11.     gc.collect()
  12.     tim.init(period = 300, mode = Timer.ONE_SHOT, callback = klikacz)
  13.     licz += 1
  14.  
  15. p1 = Pin(27, Pin.IN)
  16. p1.irq(trigger = Pin.IRQ_RISING, handler = touch)
  17. tim = Timer(0)
  18. licz = stat = 0
  19.  
  20. while True:
  21.     pass
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement