diff options
author | Josef Gajdusek <atx@atx.name> | 2015-07-09 12:54:28 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2015-07-10 18:38:41 +0200 |
commit | d574715e3916740deeffbd7637d20c78e062fff3 (patch) | |
tree | 8dc97b6eebccf77100a9d06335f7c41abb8ad25d /decoders/qi/__init__.py | |
parent | e4302cbe5cb375a50bd9a30a8a2855d9fa6ab14d (diff) | |
download | libsigrokdecode-d574715e3916740deeffbd7637d20c78e062fff3.tar.gz libsigrokdecode-d574715e3916740deeffbd7637d20c78e062fff3.zip |
qi: Add Qi charger protocol decoder
Diffstat (limited to 'decoders/qi/__init__.py')
-rw-r--r-- | decoders/qi/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/decoders/qi/__init__.py b/decoders/qi/__init__.py new file mode 100644 index 0000000..35ffe5b --- /dev/null +++ b/decoders/qi/__init__.py @@ -0,0 +1,26 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2015 Josef Gajdusek <atx@atx.name> +## +## 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, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +''' +This decoder decodes demodulated data streams used by the Qi standard +for communication from the receiver to the charging station. +''' + +from .pd import Decoder |