]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/nunchuk.py
Python decoders: Add more metadata.
[libsigrokdecode.git] / decoders / nunchuk.py
index 409e120c458296082d0775bcb97753c72b49f875..77b154eb377cedfb4a55089e1c508d423ea52121 100644 (file)
@@ -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.