X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Flm75%2Fpd.py;h=14df1b52e9a704bfc3a72981b9a11fc0ab38aa70;hp=50e3c91372b241a78acc8b6cc598eaf4982d7d59;hb=HEAD;hpb=92b7b49f6964f57a7d6fc4473645c993cfa4ba52 diff --git a/decoders/lm75/pd.py b/decoders/lm75/pd.py index 50e3c91..d59fa5f 100644 --- a/decoders/lm75/pd.py +++ b/decoders/lm75/pd.py @@ -14,8 +14,7 @@ ## 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 . ## # TODO: Better support for various LM75 compatible devices. @@ -40,14 +39,15 @@ ft = { } class Decoder(srd.Decoder): - api_version = 2 + api_version = 3 id = 'lm75' name = 'LM75' longname = 'National LM75' desc = 'National LM75 (and compatibles) temperature sensor.' license = 'gplv2+' inputs = ['i2c'] - outputs = ['lm75'] + outputs = [] + tags = ['Sensor'] options = ( {'id': 'sensor', 'desc': 'Sensor type', 'default': 'lm75', 'values': ('lm75',)}, @@ -55,14 +55,17 @@ class Decoder(srd.Decoder): 'values': (9, 10, 11, 12)}, ) annotations = ( - ('celsius', 'Temperature in degrees Celsius'), - ('kelvin', 'Temperature in Kelvin'), - ('text-verbose', 'Human-readable text (verbose)'), - ('text', 'Human-readable text'), - ('warnings', 'Human-readable warnings'), + ('celsius', 'Temperature / °C'), + ('kelvin', 'Temperature / Kelvin'), + ('text-verbose', 'Text (verbose)'), + ('text', 'Text'), + ('warning', 'Warning'), ) def __init__(self): + self.reset() + + def reset(self): self.state = 'IDLE' self.reg = 0x00 # Currently selected register self.databytes = []