AndBondStyle / niimprint

Python library for Niimbot label printers. Supports D11/B21/B1 via bluetooth or USB.
MIT License
224 stars 32 forks source link

Add B1/B21 bluetooth details to readme #16

Closed MoshiBin closed 7 months ago

MoshiBin commented 7 months ago

I noticed this pattern while trying to debug my printer. It seems from other issues that it's the same pattern for everyone - the two addresses have their first three bytes rotated right, so if one address is AA:BB:CC:dd:ee:ff the other will be CC:AA:BB:dd:ee:ff (or BB:CC:AA:dd:ee:ff for that matter). I also wanted to give users a more definite way of discerning which address is correct - I spent too much time trying to work with the wrong address just because the right address had an issue for me when I tried it first.

AndBondStyle commented 7 months ago

Good find, thanks. Do you want to try implementing #7 by any chance?