seems to work

This commit is contained in:
hg
2015-06-12 15:14:38 +02:00
parent d64e8bff98
commit 88e36b0170
5 changed files with 133 additions and 59 deletions

View File

@ -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):