Advertisement
orborbson

odbieranie kodów 433 do bufora

Sep 28th, 2024 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.25 KB | Source Code | 0 0
  1. import machine, time, gc
  2.  
  3. def cpu_freq(clock = 160):
  4.     machine.freq(clock * 1000000)
  5.     print("CPU freq: %i MHz\n" % (machine.freq() // 1000000))
  6.  
  7. def sig_irq(pin):
  8.     global get_signals
  9.     get_signals = True
  10.    
  11. def verify_signals(sig_buff):
  12.     global buff_out
  13.     count = 1
  14.     while sig_buff[count][0] != 0:
  15.         count += 1
  16.     while sig_buff[count][0] != 1:
  17.         count += 1
  18.    
  19.     buff = sig_buff[count:]
  20.     opposite = buff[0][0]
  21.     for i in buff:
  22.         if i[0] != opposite:
  23.             return False
  24.         opposite = not opposite
  25.    
  26.     buff = [i[1] for i in buff]
  27.     buff_out.append(buff)
  28.     return True
  29.    
  30. get_signals = False; lock = False
  31. pin = machine.Pin(27, machine.Pin.IN, machine.Pin.PULL_DOWN)
  32.  
  33. key_on = machine.Pin(25, machine.Pin.IN)
  34. key_off = machine.Pin(26, machine.Pin.IN)
  35.  
  36. pin.irq(handler = sig_irq, trigger = machine.Pin.IRQ_FALLING | machine.Pin.IRQ_RISING)
  37. sig_buff = []; max_buff = 1000; time_prev = 0; line = "\n%s\n" % (20 * "_____"); count = 0
  38.  
  39. # cpu_freq(160)
  40.  
  41. buttons = [ ["ON", 5], ["OFF", 0] ]
  42. buff_out = []
  43.  
  44. for i in buttons:
  45.     print('[INFO]: Naciśnij i przytrzymaj przycisk: "%s" na pilocie' % i[0])
  46.     ret = False
  47.     while not ret:
  48.         if count == max_buff:
  49.             lock = True
  50.             gc.collect()
  51.             ret = verify_signals(sig_buff)
  52.             sig_buff.clear()
  53.             count = 0
  54.             time.sleep_ms(10)
  55.             lock = False
  56.             if not ret:
  57.                 print('[BŁĄD]: Zły kod. Naciśnij "%s" jeszcze raz ...' % i[0])
  58.             else:
  59.                 print('[INFO]: Puść przycisk "%s" na pilocie' % i[0])
  60.                 break
  61.         if get_signals and lock == False:
  62.             time_now = time.ticks_us()
  63.             delta_time = time.ticks_diff(time_now, time_prev)
  64.             if delta_time >= 100:
  65.                 sig_buff.append((int(not pin.value()), delta_time))
  66.                 time_prev = time_now
  67.                 count += 1
  68.             get_signals = False
  69.     time.sleep(i[1])
  70.  
  71. kody_gotowe = ('remote_code={"%s":(%r,True),"%s":(%r,True)}' % (buttons[0][0], buff_out[0], buttons[1][0], buff_out[1])).replace(" ", "")
  72.  
  73. with open("kody.py", "w") as plik:
  74.     plik.write(kody_gotowe)
  75.  
  76. print("[INFO]: Gotowe")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement