X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fmlx90614%2Fpd.py;h=edc770d4ccc4d96f63cc20c8e3e68639c5cf157d;hp=c4a47c431b75f7d3b24bab3958cf0c010e37c4be;hb=12851357e784b893e24880efc6cd22a0cbcc64ce;hpb=8915b34659332288aab38780d8f10d75c4c83e7f diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index c4a47c4..edc770d 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -18,12 +18,10 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## -# Melexis MLX90614 Infrared Thermometer protocol decoder - import sigrokdecode as srd class Decoder(srd.Decoder): - api_version = 1 + api_version = 2 id = 'mlx90614' name = 'MLX90614' longname = 'Melexis MLX90614' @@ -31,24 +29,17 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['i2c'] outputs = ['mlx90614'] - probes = [] - optional_probes = [] - options = {} - annotations = [ - ['Celsius', 'Temperature in degrees Celsius'], - ['Kelvin', 'Temperature in Kelvin'], - ] + annotations = ( + ('celsius', 'Temperature in degrees Celsius'), + ('kelvin', 'Temperature in Kelvin'), + ) def __init__(self, **kwargs): self.state = 'IGNORE START REPEAT' self.data = [] def start(self): - # self.out_proto = self.add(srd.OUTPUT_PROTO, 'mlx90614') - self.out_ann = self.add(srd.OUTPUT_ANN, 'mlx90614') - - def report(self): - pass + self.out_ann = self.register(srd.OUTPUT_ANN) def putx(self, data): self.put(self.ss, self.es, self.out_ann, data)