CBrunsch / scambus

Scambus is a python based wireless M-Bus scanner and dissector
MIT License
30 stars 16 forks source link

mistype in wmbus.py #1

Closed pdibartolomeo closed 7 years ago

pdibartolomeo commented 7 years ago

Hello, 'if ci >= 0xA0 and ci > 0xB7:' is wrong, as can easily be seen.

It should be instead: if ci >= 0xA0 and ci <= 0xB7

Regards

CBrunsch commented 7 years ago

You are quite right. I placed this one as an easter egg to figure if somebody is ever going to use this :)

Congratz!