From 17e0ba228dadb7a12aa0e11fa81fcbc4a7836349 Mon Sep 17 00:00:00 2001 From: Gerhard Sittig Date: Sat, 25 Jul 2020 17:56:54 +0200 Subject: ir_nec: add support for extended NEC protocol (16bit address) Add support for the extended NEC protocol, where the address field spans 16 bits and the complement is not sent. Commands still span 8 bits and are sent in normal and in inverted form. The user needs to select the extended protocol (off by default for compatibility), the input data does not allow automatic detection of the protocol variant. It's also not appropriate to assume the extended format when the address field happens to fail the validity check. The unfortunate mix of data value checks and annotation emission in combination with "global" state makes this implementation more redundant than I would like. A later cleanup is desirable. This resolves bug #1583. --- decoders/ir_nec/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'decoders/ir_nec/__init__.py') diff --git a/decoders/ir_nec/__init__.py b/decoders/ir_nec/__init__.py index c361c3d..c3ab293 100644 --- a/decoders/ir_nec/__init__.py +++ b/decoders/ir_nec/__init__.py @@ -19,6 +19,7 @@ ''' NEC is a pulse-distance based infrared remote control protocol. +See https://www.sbprojects.net/knowledge/ir/nec.php for a description. ''' from .pd import Decoder -- cgit v1.2.3-70-g09d2