Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from machine import Pin, Timer
- import gc
- def klikacz(x):
- global stat
- print("Kliknąłeś %ix" % (licz - stat))
- stat = licz
- def touch(x):
- global licz, tim
- gc.collect()
- tim.init(period = 300, mode = Timer.ONE_SHOT, callback = klikacz)
- licz += 1
- p1 = Pin(27, Pin.IN)
- p1.irq(trigger = Pin.IRQ_RISING, handler = touch)
- tim = Timer(0)
- licz = stat = 0
- while True:
- pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement