]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/nunchuk/pd.py
decoders: Fix incorrect 'outputs' fields.
[libsigrokdecode.git] / decoders / nunchuk / pd.py
index 4f006f2f8f0816546124b288982781eec5cb3f49..59b102890dcd0ea507f954d18084847562d0cf97 100644 (file)
@@ -27,7 +27,8 @@ class Decoder(srd.Decoder):
     desc = 'Nintendo Wii Nunchuk controller protocol.'
     license = 'gplv2+'
     inputs = ['i2c']
-    outputs = ['nunchuck']
+    outputs = []
+    tags = ['Sensor']
     annotations = \
         tuple(('reg-0x%02X' % i, 'Register 0x%02X' % i) for i in range(6)) + (
         ('bit-bz', 'BZ bit'),