[Solved] Get unreadable string from GPS tracker


Its really some binary information and If you have clearly read out the product manual then it says formation of this binaries.

Converting the data to hex will give something like this..

24-41-20-20-67-72-51-30-35-41-68-40-91-29-3F-3F-3F-FF-FF-FB-FF-FF-3F-3F-

And then you need to refer the manual for exact meaning of these hex numbers

ex–(in some chinese devices)

2 bytes(24),  stand for standard mode
10 bytes,  is device'ID (41 20 20 67 72)
6 bytes, is time 
6 bytes, is data
8 bytes, is latitude
2 bytes, battery like this 06= 100% 05=80% 04=60% 03=40% 02=20% 01=10%
10 bytes is  longitude

** You are receiving these binaries because you’ve asked it to send the info in binary mode.

1

solved Get unreadable string from GPS tracker