diff options
author | BenediktO <benedikt_o@web.de> | 2019-12-01 12:32:12 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-12-03 21:52:59 +0100 |
commit | 8249f091ce7b06a1736d54b7d25ee8cef282f70b (patch) | |
tree | 6cb91a5df3a89437244a40fea1ea6ad2959039c4 /decoders/ir_rc6/__init__.py | |
parent | 681bad2a4da0ba8c0c5fb76980cf8515e381750d (diff) | |
download | libsigrokdecode-8249f091ce7b06a1736d54b7d25ee8cef282f70b.tar.gz libsigrokdecode-8249f091ce7b06a1736d54b7d25ee8cef282f70b.zip |
ir_rc6: Initial commit
Diffstat (limited to 'decoders/ir_rc6/__init__.py')
-rw-r--r-- | decoders/ir_rc6/__init__.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/decoders/ir_rc6/__init__.py b/decoders/ir_rc6/__init__.py new file mode 100644 index 0000000..b2cb9f9 --- /dev/null +++ b/decoders/ir_rc6/__init__.py @@ -0,0 +1,24 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2019 Benedikt Otto <benedikt_o@web.de> +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, see <http://www.gnu.org/licenses/>. +## + +''' +RC-6 is a biphase/manchester based infrared remote control protocol. +''' + +from .pd import Decoder |