mirror of
https://github.com/pommi/python-itho-wpu.git
synced 2024-11-21 13:52:15 +01:00
Update itho-wpu.py
Resolving issue with datatype 0xc (1 byte integer)
This commit is contained in:
parent
2a25e8148b
commit
ce846efb62
@ -252,7 +252,7 @@ def process_datalog(response):
|
||||
message = response[5:]
|
||||
measurements = {}
|
||||
for d in datalog:
|
||||
if d.type == 0x0 or d.type == 0x12:
|
||||
if d.type == 0x0 or d.type == 0x12 or d.type == 0xc:
|
||||
m = message[d.index:d.index+1]
|
||||
num = int(m[0], 0)
|
||||
elif d.type == 0x10:
|
||||
|
Loading…
Reference in New Issue
Block a user