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