]> sigrok.org Git - libsigrokdecode.git/blob - decoders/mlx90614/pd.py
aa63458ffeb9f76c238ddac0815a90c8867cd0bd
[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, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 import sigrokdecode as srd
22
23 class Decoder(srd.Decoder):
24     api_version = 1
25     id = 'mlx90614'
26     name = 'MLX90614'
27     longname = 'Melexis MLX90614'
28     desc = 'Infrared Thermometer protocol.'
29     license = 'gplv2+'
30     inputs = ['i2c']
31     outputs = ['mlx90614']
32     annotations = [
33         ['celsius', 'Temperature in degrees Celsius'],
34         ['kelvin', 'Temperature in Kelvin'],
35     ]
36
37     def __init__(self, **kwargs):
38         self.state = 'IGNORE START REPEAT'
39         self.data = []
40
41     def start(self):
42         # self.out_python = self.register(srd.OUTPUT_PYTHON)
43         self.out_ann = self.register(srd.OUTPUT_ANN)
44
45     def putx(self, data):
46         self.put(self.ss, self.es, self.out_ann, data)
47
48     # Quick hack implementation! This needs to be improved a lot!
49     def decode(self, ss, es, data):
50         cmd, databyte = data
51
52         # State machine.
53         if self.state == 'IGNORE START REPEAT':
54             if cmd != 'START REPEAT':
55                 return
56             self.state = 'IGNORE ADDRESS WRITE'
57         elif self.state == 'IGNORE ADDRESS WRITE':
58             if cmd != 'ADDRESS WRITE':
59                 return
60             self.state = 'GET TEMPERATURE'
61         elif self.state == 'GET TEMPERATURE':
62             if cmd != 'DATA WRITE':
63                 return
64             if len(self.data) == 0:
65                 self.data.append(databyte)
66                 self.ss = ss
67             elif len(self.data) == 1:
68                 self.data.append(databyte)
69                 self.es = es
70             else:
71                 kelvin = (self.data[0] | (self.data[1] << 8)) * 0.02
72                 celsius = kelvin - 273.15
73                 self.putx([0, ['Temperature: %3.2f °C' % celsius]])
74                 self.putx([1, ['Temperature: %3.2f K' % kelvin]])
75                 self.state = 'IGNORE START REPEAT'
76                 self.data = []
77         else:
78             raise Exception('Invalid state: %s' % self.state)
79