Advertisement
orborbson

remote_receiver

Sep 18th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.94 KB | Source Code | 0 0
  1. import machine, time, gc
  2.  
  3. def get_signals(pin):
  4.     global count, time_prev, sig_buff
  5.     #print("irq:", count)
  6.     time_now = time.ticks_us()
  7.     sig_buff.append((int(not pin.value()), time_now - time_prev))
  8.     time_prev = time_now
  9.     count += 1
  10.        
  11. def show_signals():
  12.     global sig_buff
  13.     start = sig_buff[0][0]
  14.     for i in sig_buff:
  15.         if i[0] != start:
  16.             return
  17.         start = int(not start)
  18.     print("r.write_pulses(%r, %r)\n%s\n" % ([i[1] for i in sig_buff[1:]], bool(sig_buff[1][0]), line))
  19.  
  20. p1 = machine.Pin(27, machine.Pin.IN, machine.Pin.PULL_DOWN)
  21. p1.irq(handler = get_signals, trigger = machine.Pin.IRQ_FALLING | machine.Pin.IRQ_RISING)
  22. sig_buff = []; count = time_prev = 0; line = 20 * "_____"
  23.  
  24. while True:
  25.     gc.collect()
  26.     while count < 300:
  27.         pass
  28.     irq_state = machine.disable_irq()
  29.     show_signals()
  30.     sig_buff.clear()
  31.     count = 0
  32.     machine.enable_irq(irq_state)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement