Advertisement
orborbson

klikacz

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