]> sigrok.org Git - libsigrokdecode.git/blame - decoders/rgb_led/pd.py
rgb_led: Fix annotation end sample numbers.
[libsigrokdecode.git] / decoders / rgb_led / pd.py
CommitLineData
2c173272
MR
1##
2## This file is part of the libsigrokdecode project.
3##
4## Copyright (C) 2014 Matt Ranostay <mranostay@gmail.com>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21import sigrokdecode as srd
22
23class Decoder(srd.Decoder):
8967e839 24 api_version = 1
2c173272
MR
25 id = 'rgb_led'
26 name = 'RGB LED (SPI mode)'
27 longname = 'RGB LED string decoder (SPI mode)'
8967e839 28 desc = 'Generic RGB LED string protocol (RGB values clocked over SPI).'
2c173272
MR
29 license = 'gplv2'
30 inputs = ['spi']
31 outputs = ['rgb_led']
32 probes = []
33 optional_probes = []
34 options = {}
35 annotations = [
8967e839 36 ['rgb', 'RGB values'],
2c173272
MR
37 ]
38
39 def __init__(self, **kwargs):
40 self.cmd_ss, self.cmd_es = 0, 0
41 self.mosi_bytes = []
42
43 def start(self):
44 self.out_ann = self.register(srd.OUTPUT_ANN)
45
46 def putx(self, data):
47 self.put(self.cmd_ss, self.cmd_es, self.out_ann, data)
48
49 def decode(self, ss, es, data):
50 ptype, mosi, miso = data
51
8967e839 52 # Only care about data packets.
2c173272
MR
53 if ptype != 'DATA':
54 return
55 self.ss, self.es = ss, es
56
57 if len(self.mosi_bytes) == 0:
58 self.cmd_ss = ss
59 self.mosi_bytes.append(mosi)
60
61 # RGB value == 3 bytes
62 if len(self.mosi_bytes) != 3:
63 return
64
8967e839 65 red, green, blue = self.mosi_bytes
2c173272
MR
66 rgb_value = int(red) << 16
67 rgb_value |= int(green) << 8
68 rgb_value |= int(blue)
69
83d792a4 70 self.cmd_es = es
2c173272
MR
71 self.putx([0, ["#%.6x" % rgb_value]])
72 self.mosi_bytes = []