]> sigrok.org Git - libsigrokdecode.git/blame - decoders/rgb_led_spi/pd.py
decoders: Add/update tags for each PD.
[libsigrokdecode.git] / decoders / rgb_led_spi / 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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
2c173272
MR
18##
19
20import sigrokdecode as srd
21
22class Decoder(srd.Decoder):
b197383c 23 api_version = 3
ae036d34 24 id = 'rgb_led_spi'
e85b0440
UH
25 name = 'RGB LED (SPI)'
26 longname = 'RGB LED string decoder (SPI)'
a7c8dc5e 27 desc = 'RGB LED string protocol (RGB values clocked over SPI).'
9eac0fe3 28 license = 'gplv2+'
2c173272 29 inputs = ['spi']
ae036d34 30 outputs = ['rgb_led_spi']
d6d8a8a4 31 tags = ['Display']
da9bcbd9
BV
32 annotations = (
33 ('rgb', 'RGB values'),
34 )
2c173272 35
92b7b49f 36 def __init__(self):
10aeb8ea
GS
37 self.reset()
38
39 def reset(self):
486b19ce 40 self.ss_cmd, self.es_cmd = 0, 0
2c173272
MR
41 self.mosi_bytes = []
42
43 def start(self):
44 self.out_ann = self.register(srd.OUTPUT_ANN)
45
46 def putx(self, data):
486b19ce 47 self.put(self.ss_cmd, self.es_cmd, self.out_ann, data)
2c173272
MR
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:
486b19ce 58 self.ss_cmd = ss
2c173272
MR
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
35b380b1 66 rgb_value = int(red) << 16 | int(green) << 8 | int(blue)
2c173272 67
486b19ce 68 self.es_cmd = es
21b39043 69 self.putx([0, ['#%.6x' % rgb_value]])
2c173272 70 self.mosi_bytes = []