X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fmlx90614%2Fpd.py;h=1f627e6adf755c63051a1bb853ba30ab583dd6fe;hb=ecb0b96d4a4d0021b41ffebec0df219338aa3724;hp=eeb2743a794e45c0adb131c2d9bbab0bfe293f7a;hpb=e28f7aee3b96afeb543e0c3c29e3950ddd61a490;p=libsigrokdecode.git diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index eeb2743..1f627e6 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -14,14 +14,13 @@ ## 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 . ## import sigrokdecode as srd class Decoder(srd.Decoder): - api_version = 2 + api_version = 3 id = 'mlx90614' name = 'MLX90614' longname = 'Melexis MLX90614' @@ -34,7 +33,7 @@ class Decoder(srd.Decoder): ('kelvin', 'Temperature in Kelvin'), ) - def __init__(self, **kwargs): + def __init__(self): self.state = 'IGNORE START REPEAT' self.data = [] @@ -73,4 +72,3 @@ class Decoder(srd.Decoder): self.putx([1, ['Temperature: %3.2f K' % kelvin]]) self.state = 'IGNORE START REPEAT' self.data = [] -