I used android to parse a long variable into 6 bytes, which is received by python code through bluetooth on my computer to put it together. On the android side, it shows that it sends 6 bytes.
If the byte array sent from android for example is "F�I��", python print received byte array is exactly the same "F�I��". But len(data) = 12, not 6. It looks like each "�" has a length of 3. Anyone have a clue? How do I interpret it correctly?
Thanks!