]> sigrok.org Git - libsigrokdecode.git/commitdiff
am230x: Change option to 'device' to allow for more devices.
authorUwe Hermann <redacted>
Sun, 12 Oct 2014 12:58:25 +0000 (14:58 +0200)
committerUwe Hermann <redacted>
Sun, 12 Oct 2014 12:59:56 +0000 (14:59 +0200)
decoders/am230x/pd.py

index 9a783b9cb4849ac0eeb73c50b433804e51306dee..02f8af294059b63466e8ed0c312439f9217627cd 100644 (file)
@@ -47,8 +47,8 @@ class Decoder(srd.Decoder):
         {'id': 'sda', 'name': 'SDA', 'desc': 'Single wire serial data line'},
     )
     options = (
-        {'id': 'dht11', 'desc': 'DHT11 compatibility mode',
-            'default': 'no', 'values': ('no', 'yes')},
+        {'id': 'device', 'desc': 'Device type',
+            'default': 'am230x', 'values': ('am230x', 'dht11')},
     )
     annotations = (
         ('start', 'Start'),
@@ -101,7 +101,7 @@ class Decoder(srd.Decoder):
 
     def calculate_humidity(self, bitlist):
         h = 0
-        if self.options['dht11'] == 'yes':
+        if self.options['device'] == 'dht11':
             h = self.bits2num(bitlist[0:8])
         else:
             h = self.bits2num(bitlist) / 10
@@ -109,7 +109,7 @@ class Decoder(srd.Decoder):
 
     def calculate_temperature(self, bitlist):
         t = 0
-        if self.options['dht11'] == 'yes':
+        if self.options['device'] == 'dht11':
             t = self.bits2num(bitlist[0:8])
         else:
             t = self.bits2num(bitlist[1:]) / 10