diff options
author | alberink <alberink@stampfini.org> | 2014-06-19 17:18:52 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-08-14 21:51:41 +0200 |
commit | d4026957a57e5f665fa91c8d706976613e29c1b4 (patch) | |
tree | 6a4cb198c80992a797b3116098447612e8add7f8 /decoders/tca6408a/__init__.py | |
parent | 28c3c217cc70cf2eba41dbca2954c5d8382802d7 (diff) | |
download | libsigrokdecode-d4026957a57e5f665fa91c8d706976613e29c1b4.tar.gz libsigrokdecode-d4026957a57e5f665fa91c8d706976613e29c1b4.zip |
Add decoder for TCA6408A I2C I/O expanders.
Diffstat (limited to 'decoders/tca6408a/__init__.py')
-rw-r--r-- | decoders/tca6408a/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/decoders/tca6408a/__init__.py b/decoders/tca6408a/__init__.py new file mode 100644 index 0000000..9982d58 --- /dev/null +++ b/decoders/tca6408a/__init__.py @@ -0,0 +1,26 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2014 alberink <alberink@stampfini.org> +## +## 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 stacks on top of the 'i2c' PD and decodes the Texas Instruments +TCA6408A 8-bit I²C I/O expander protocol. +''' + +from .pd import * |