]> sigrok.org Git - libsigrokdecode.git/commitdiff
rgb_led_ws281x: Support RGBW
authorStefan <redacted>
Thu, 4 Jun 2020 09:11:32 +0000 (11:11 +0200)
committerSoeren Apel <redacted>
Sat, 18 Jul 2020 20:59:15 +0000 (22:59 +0200)
Support of the now common RGBW type LED strips (uses 4 bytes instead of 3).

Added an option to select RGB or RGBW

decoders/rgb_led_ws281x/pd.py

index bf181b6614143b308729ee0c043ffbf1f5b6a699..43fbce4d0e2c9c89baacdb263649a706c2e21f38 100644 (file)
@@ -45,6 +45,10 @@ class Decoder(srd.Decoder):
         ('bits', 'Bits', (0, 1)),
         ('rgb-vals', 'RGB values', (2,)),
     )
+    options = (
+        {'id': 'type', 'desc': 'RGB or RGBW', 'default': 'RGB',
+         'values': ('RGB', 'RGBW')},
+    )
 
     def __init__(self):
         self.reset()
@@ -66,13 +70,22 @@ class Decoder(srd.Decoder):
             self.samplerate = value
 
     def handle_bits(self, samplenum):
-        if len(self.bits) == 24:
-            grb = reduce(lambda a, b: (a << 1) | b, self.bits)
-            rgb = (grb & 0xff0000) >> 8 | (grb & 0x00ff00) << 8 | (grb & 0x0000ff)
-            self.put(self.ss_packet, samplenum, self.out_ann,
-                     [2, ['#%06x' % rgb]])
-            self.bits = []
-            self.ss_packet = None
+        if self.options['type'] == 'RGB':
+            if len(self.bits) == 24:
+                grb = reduce(lambda a, b: (a << 1) | b, self.bits)
+                rgb = (grb & 0xff0000) >> 8 | (grb & 0x00ff00) << 8 | (grb & 0x0000ff)
+                self.put(self.ss_packet, samplenum, self.out_ann,
+                         [2, ['#%06x' % rgb]])
+                self.bits = []
+                self.ss_packet = None
+        else:
+            if len(self.bits) == 32:
+                grb = reduce(lambda a, b: (a << 1) | b, self.bits)
+                rgb = (grb & 0xff0000) >> 8 | (grb & 0x00ff00) << 8 | (grb & 0xff0000ff)
+                self.put(self.ss_packet, samplenum, self.out_ann,
+                         [2, ['#%08x' % rgb]])
+                self.bits = []
+                self.ss_packet = None
 
     def decode(self):
         if not self.samplerate: