]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/mlx90614/pd.py
atsha204a: Rename a few methods for consistency.
[libsigrokdecode.git] / decoders / mlx90614 / pd.py
index aa1ead548fe0b4a9878a1a4b83f027f20311b634..60927f7324bb5d96c390f27837f1c4845ca7968a 100644 (file)
 ## 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 <http://www.gnu.org/licenses/>.
 ##
 
 import sigrokdecode as srd
 
 class Decoder(srd.Decoder):
-    api_version = 2
+    api_version = 3
     id = 'mlx90614'
     name = 'MLX90614'
     longname = 'Melexis MLX90614'
@@ -34,7 +33,10 @@ class Decoder(srd.Decoder):
         ('kelvin', 'Temperature in Kelvin'),
     )
 
-    def __init__(self, **kwargs):
+    def __init__(self):
+        self.reset()
+
+    def reset(self):
         self.state = 'IGNORE START REPEAT'
         self.data = []