diff options
author | Karl Palsson <karlp@tweak.net.au> | 2015-05-30 20:28:55 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2015-06-16 13:35:44 +0200 |
commit | e2ba53bbd8d176aedc8f5f9a3bb4086bc5f526f3 (patch) | |
tree | 9e411b4d7526aa2686b3a084b5c4c0b953b6af7f /decoders/am230x/pd.py | |
parent | 468c974e7bdbc068ad1771069e3e0adb35853ad5 (diff) | |
download | libsigrokdecode-e2ba53bbd8d176aedc8f5f9a3bb4086bc5f526f3.tar.gz libsigrokdecode-e2ba53bbd8d176aedc8f5f9a3bb4086bc5f526f3.zip |
am23xx: explicitly mention RHTxx devices.
Include their compatibility in the dropdown options too.
Diffstat (limited to 'decoders/am230x/pd.py')
-rw-r--r-- | decoders/am230x/pd.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/decoders/am230x/pd.py b/decoders/am230x/pd.py index fd1e825..2b54cde 100644 --- a/decoders/am230x/pd.py +++ b/decoders/am230x/pd.py @@ -37,9 +37,9 @@ class SamplerateError(Exception): class Decoder(srd.Decoder): api_version = 2 id = 'am230x' - name = 'AM230x/DHTxx' - longname = 'Aosong AM230x/DHTxx' - desc = 'Aosong AM230x/DHTxx humidity/temperature sensor protocol.' + name = 'AM230x/DHTxx/RHTxx' + longname = 'Aosong AM230x/DHTxx/RHTxx' + desc = 'Aosong AM230x/DHTxx/RHTxx humidity/temperature sensor protocol.' license = 'gplv2+' inputs = ['logic'] outputs = ['am230x'] @@ -48,7 +48,7 @@ class Decoder(srd.Decoder): ) options = ( {'id': 'device', 'desc': 'Device type', - 'default': 'am230x', 'values': ('am230x', 'dht11')}, + 'default': 'am230x', 'values': ('am230x/rht', 'dht11')}, ) annotations = ( ('start', 'Start'), |