diff options
author | cbdev <cb@cbcdn.com> | 2016-06-29 18:39:10 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2016-07-06 19:25:24 +0200 |
commit | 27ea5bac5d4b383477f1ed69c533610548d27138 (patch) | |
tree | a2d12ba2718faf65a6adf8c3987556d296725e5d /decoders/dmx512/__init__.py | |
parent | 2cd9b19718ec7a21186d15634062b2409e4e5813 (diff) | |
download | libsigrokdecode-27ea5bac5d4b383477f1ed69c533610548d27138.tar.gz libsigrokdecode-27ea5bac5d4b383477f1ed69c533610548d27138.zip |
Add a DMX512 protocol decoder
Diffstat (limited to 'decoders/dmx512/__init__.py')
-rw-r--r-- | decoders/dmx512/__init__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/decoders/dmx512/__init__.py b/decoders/dmx512/__init__.py new file mode 100644 index 0000000..9761dd5 --- /dev/null +++ b/decoders/dmx512/__init__.py @@ -0,0 +1,26 @@ +## +## This file is part of the libsigrokdecode project. +## +## Copyright (C) 2016 Fabian J. Stumpf <sigrok@fabianstumpf.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, write to the Free Software +## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## + +''' +DMX512 (Digital MultipleX 512) is a protocol based on RS485, used to control +professional lighting fixtures. +''' + +from .pd import Decoder |