diff options
Diffstat (limited to 'decoders/nunchuk.py')
-rw-r--r-- | decoders/nunchuk.py | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/decoders/nunchuk.py b/decoders/nunchuk.py index 409e120..77b154e 100644 --- a/decoders/nunchuk.py +++ b/decoders/nunchuk.py @@ -143,9 +143,22 @@ def register(): return { 'id': 'nunchuk', 'name': 'Nunchuk', - 'desc': 'Nintendo Wii Nunchuk decoder', - 'inputformats': ['i2c'], - 'ouputformats': ['nunchuk'], + 'longname': 'Nintendo Wii Nunchuk decoder', + 'desc': 'Decodes the Nintendo Wii Nunchuk I2C-based protocol.', + 'longdesc': '...', + 'author': 'Uwe Hermann', + 'email': 'uwe@hermann-uwe.de', + 'license': 'gplv2+', + 'in': ['i2c'], + 'out': ['nunchuck'], + 'probes': [ + # TODO + ], + 'options': { + # TODO + }, + # 'start': start, + # 'report': report, } # Use psyco (if available) as it results in huge performance improvements. |