]> sigrok.org Git - libsigrokdecode.git/blob - decoders/mlx90614/pd.py
decoders: Add/update tags for each PD.
[libsigrokdecode.git] / decoders / mlx90614 / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
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
17 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
18 ##
19
20 import sigrokdecode as srd
21
22 class Decoder(srd.Decoder):
23     api_version = 3
24     id = 'mlx90614'
25     name = 'MLX90614'
26     longname = 'Melexis MLX90614'
27     desc = 'Infrared Thermometer protocol.'
28     license = 'gplv2+'
29     inputs = ['i2c']
30     outputs = ['mlx90614']
31     tags = ['IC', 'Sensor']
32     annotations = (
33         ('celsius', 'Temperature in degrees Celsius'),
34         ('kelvin', 'Temperature in Kelvin'),
35     )
36
37     def __init__(self):
38         self.reset()
39
40     def reset(self):
41         self.state = 'IGNORE START REPEAT'
42         self.data = []
43
44     def start(self):
45         self.out_ann = self.register(srd.OUTPUT_ANN)
46
47     def putx(self, data):
48         self.put(self.ss, self.es, self.out_ann, data)
49
50     # Quick hack implementation! This needs to be improved a lot!
51     def decode(self, ss, es, data):
52         cmd, databyte = data
53
54         # State machine.
55         if self.state == 'IGNORE START REPEAT':
56             if cmd != 'START REPEAT':
57                 return
58             self.state = 'IGNORE ADDRESS WRITE'
59         elif self.state == 'IGNORE ADDRESS WRITE':
60             if cmd != 'ADDRESS WRITE':
61                 return
62             self.state = 'GET TEMPERATURE'
63         elif self.state == 'GET TEMPERATURE':
64             if cmd != 'DATA WRITE':
65                 return
66             if len(self.data) == 0:
67                 self.data.append(databyte)
68                 self.ss = ss
69             elif len(self.data) == 1:
70                 self.data.append(databyte)
71                 self.es = es
72             else:
73                 kelvin = (self.data[0] | (self.data[1] << 8)) * 0.02
74                 celsius = kelvin - 273.15
75                 self.putx([0, ['Temperature: %3.2f °C' % celsius]])
76                 self.putx([1, ['Temperature: %3.2f K' % kelvin]])
77                 self.state = 'IGNORE START REPEAT'
78                 self.data = []