seems to work
This commit is contained in:
@ -13,6 +13,7 @@ def bcd(data):
|
||||
for c in reversed(data):
|
||||
v += str((c & 0xf0) >> 4)
|
||||
v += str(c & 0x0f)
|
||||
v = int(v)
|
||||
return v
|
||||
|
||||
def manufCode(data):
|
||||
|
Reference in New Issue
Block a user