X-Git-Url: https://vault307.fbx.one/gitweb/micorpython_ir.git/blobdiff_plain/5bdfdd8333ec035dd71a5b4a031096087e07c682..22acf8e1d02787907c7eacba1756b5acd1c4495f:/ir_rx_test.py?ds=sidebyside diff --git a/ir_rx_test.py b/ir_rx_test.py index 82f97dd..badd2b5 100644 --- a/ir_rx_test.py +++ b/ir_rx_test.py @@ -8,51 +8,52 @@ from sys import platform import time +import gc from machine import Pin, freq -from ir_rx import * - -ESP32 = platform == 'esp32' or platform == 'esp32_LoBo' +from ir_rx.print_error import print_error # Optional print of error codes +# Import all implemented classes +from ir_rx.nec import NEC_8, NEC_16 +from ir_rx.sony import SONY_12, SONY_15, SONY_20 +from ir_rx.philips import RC5_IR, RC6_M0 +# Define pin according to platform if platform == 'pyboard': p = Pin('X3', Pin.IN) elif platform == 'esp8266': freq(160000000) p = Pin(13, Pin.IN) -elif ESP32: - p = Pin(23, Pin.IN) - -errors = {BADSTART : 'Invalid start pulse', BADBLOCK : 'Error: bad block', - BADREP : 'Error: repeat', OVERRUN : 'Error: overrun', - BADDATA : 'Error: invalid data', BADADDR : 'Error: invalid address'} +elif platform == 'esp32' or platform == 'esp32_LoBo': + p = Pin(23, Pin.IN) # was 27 +# User callback def cb(data, addr, ctrl): - if data == REPEAT: # NEC protocol sends repeat codes. + if data < 0: # NEC protocol sends repeat codes. print('Repeat code.') - elif data >= 0: - print('Data {:03x} Addr {:03x} Ctrl {:01x}'.format(data, addr, ctrl)) else: - print('{} Address: {}'.format(errors[data], hex(addr))) + print('Data {:02x} Addr {:04x} Ctrl {:02x}'.format(data, addr, ctrl)) +def test(proto=0): + classes = (NEC_8, NEC_16, SONY_12, SONY_15, SONY_20, RC5_IR, RC6_M0) + ir = classes[proto](p, cb) # Instantiate receiver + ir.error_function(print_error) # Show debug information + #ir.verbose = True + # A real application would do something here... + while True: + print('running') + time.sleep(5) + gc.collect() +# **** DISPLAY GREETING **** s = '''Test for IR receiver. Run: -ir_tx_test.test() for NEC protocol, -ir_tx_test.test(5) for Philips RC-5 protocol, -ir_tx_test.test(6) for RC6 mode 0. +from ir_rx_test import test +test() for NEC 8 bit protocol, +test(1) for NEC 16 bit, +test(2) for Sony SIRC 12 bit, +test(3) for Sony SIRC 15 bit, +test(4) for Sony SIRC 20 bit, +test(5) for Philips RC-5 protocol, +test(6) for RC6 mode 0. -Background processing means REPL prompt reappears. -Hit ctrl-D to stop (soft reset).''' +Hit ctrl-c to stop, then ctrl-d to soft reset.''' print(s) - -def test(proto=0): - if proto == 0: - ir = NEC_IR(p, cb) # Extended mode - elif proto == 5: - ir = RC5_IR(p, cb) - elif proto == 6: - ir = RC6_M0(p, cb) - ir.verbose = True - # A real application would do something here... - #while True: - #time.sleep(5) - #print('running')