]> sigrok.org Git - libsigrokdecode.git/blame - decoders/mlx90614/pd.py
mlx90614: Add annotation rows.
[libsigrokdecode.git] / decoders / mlx90614 / pd.py
CommitLineData
bc1385a6 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
bc1385a6
UH
3##
4## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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/>.
bc1385a6
UH
18##
19
bc1385a6
UH
20import sigrokdecode as srd
21
22class Decoder(srd.Decoder):
b197383c 23 api_version = 3
bc1385a6
UH
24 id = 'mlx90614'
25 name = 'MLX90614'
26 longname = 'Melexis MLX90614'
2787cf2a 27 desc = 'Melexis MLX90614 infrared thermometer protocol.'
bc1385a6
UH
28 license = 'gplv2+'
29 inputs = ['i2c']
6cbba91f 30 outputs = []
d6d8a8a4 31 tags = ['IC', 'Sensor']
da9bcbd9 32 annotations = (
d94270b9
UH
33 ('celsius', 'Temperature / °C'),
34 ('kelvin', 'Temperature / K'),
35 )
36 annotation_rows = (
37 ('temps-celsius', 'Temperature / °C', (0,)),
38 ('temps-kelvin', 'Temperature / K', (1,)),
da9bcbd9 39 )
bc1385a6 40
92b7b49f 41 def __init__(self):
10aeb8ea
GS
42 self.reset()
43
44 def reset(self):
bc1385a6
UH
45 self.state = 'IGNORE START REPEAT'
46 self.data = []
47
8915b346 48 def start(self):
be465111 49 self.out_ann = self.register(srd.OUTPUT_ANN)
bc1385a6 50
bc1385a6
UH
51 def putx(self, data):
52 self.put(self.ss, self.es, self.out_ann, data)
53
54 # Quick hack implementation! This needs to be improved a lot!
55 def decode(self, ss, es, data):
1b75abfd 56 cmd, databyte = data
bc1385a6
UH
57
58 # State machine.
59 if self.state == 'IGNORE START REPEAT':
60 if cmd != 'START REPEAT':
61 return
62 self.state = 'IGNORE ADDRESS WRITE'
63 elif self.state == 'IGNORE ADDRESS WRITE':
64 if cmd != 'ADDRESS WRITE':
65 return
66 self.state = 'GET TEMPERATURE'
67 elif self.state == 'GET TEMPERATURE':
69ff19c8
UH
68 if cmd != 'DATA WRITE':
69 return
bc1385a6 70 if len(self.data) == 0:
7f7ea759 71 self.data.append(databyte)
bc1385a6
UH
72 self.ss = ss
73 elif len(self.data) == 1:
7f7ea759 74 self.data.append(databyte)
bc1385a6
UH
75 self.es = es
76 else:
77 kelvin = (self.data[0] | (self.data[1] << 8)) * 0.02
78 celsius = kelvin - 273.15
afff6b1a 79 self.putx([0, ['Temperature: %3.2f °C' % celsius]])
f2e114de 80 self.putx([1, ['Temperature: %3.2f K' % kelvin]])
bc1385a6
UH
81 self.state = 'IGNORE START REPEAT'
82 self.data = []