X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fmlx90614%2Fpd.py;h=f0dbe22a240f4cceb030405f3fa4b8849e3e598f;hp=57c96bce40adfee7ee08a5c4b20bb02626a84fb4;hb=6cbba91f23b9f9ace75b4722c9c0776b9211008d;hpb=0169f19c53e195df2f96c4df731ad3214c59e20a diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index 57c96bc..f0dbe22 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -14,37 +14,34 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## along with this program; if not, see . ## -# Melexis MLX90614 Infrared Thermometer protocol decoder - import sigrokdecode as srd class Decoder(srd.Decoder): - api_version = 1 + api_version = 3 id = 'mlx90614' name = 'MLX90614' longname = 'Melexis MLX90614' - desc = 'Infrared Thermometer protocol.' + desc = 'Melexis MLX90614 infrared thermometer protocol.' license = 'gplv2+' inputs = ['i2c'] - outputs = ['mlx90614'] - probes = [] - optional_probes = [] - options = {} - annotations = [ - ['Celsius', 'Temperature in degrees Celsius'], - ['Kelvin', 'Temperature in Kelvin'], - ] + outputs = [] + tags = ['IC', 'Sensor'] + annotations = ( + ('celsius', 'Temperature in degrees Celsius'), + ('kelvin', 'Temperature in Kelvin'), + ) + + def __init__(self): + self.reset() - def __init__(self, **kwargs): + def reset(self): self.state = 'IGNORE START REPEAT' self.data = [] def start(self): - # self.out_proto = self.register(srd.OUTPUT_PYTHON) self.out_ann = self.register(srd.OUTPUT_ANN) def putx(self, data): @@ -79,6 +76,3 @@ class Decoder(srd.Decoder): self.putx([1, ['Temperature: %3.2f K' % kelvin]]) self.state = 'IGNORE START REPEAT' self.data = [] - else: - raise Exception('Invalid state: %s' % self.state) -