meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hw:gt06_gps_tracker:online_tracking [2016/07/18 09:25] – hw:gt06_gps_tracker:traccar renamed to hw:gt06_gps_tracker:online_tracking niziakhw:gt06_gps_tracker:online_tracking [2019/11/20 09:14] (current) niziak
Line 1: Line 1:
 +====== Protocol ======
 +Device is using GT06 protocol.\\
 +[[https://dl.dropboxusercontent.com/s/sqtkulcj51zkria/GT06_GPS_Tracker_Communication_Protocol_v1.8.1.pdf|GT06_GPS_Tracker_Communication_Protocol_v1.8.1.pdf]]\\
 +[[https://dl.dropboxusercontent.com/s/d2603hbd8aeybrh/GT07_GPS_Tracker_Communication_Protocol_v1.4neutral.pdf|GT07_GPS_Tracker_Communication_Protocol_v1.4neutral.pdf]]\\
 +
 +Decoded login packet.\\
 +Total packet length is 10+N bytes:
 +  * 78 78 start sequence
 +  * 0d packet length = 13 (5+N bytes, so 8 bytes information content)
 +  * 01 procol number 1 - login message packet
 +  * information content 8 bytes
 +    * 01 23 45 67 89 01 23 45  - device id = IMEI number
 +  * 00 51 - information serial number
 +  * 5f 33 - error check
 +  * 0d 0a - stop sequence
 +
 ====== Traccar server ====== ====== Traccar server ======
 [[https://www.traccar.org/]] [[https://www.traccar.org/]]
Line 5: Line 21:
   * GT06 protocol port 5023   * GT06 protocol port 5023
  
-====== Traccar Web UI MOD ======+[[https://www.traccar.org/documentation/|Documentation]] 
 +[[https://www.traccar.org/protocols/|Protocols]] 
 + 
 +===== Installation ===== 
 + 
 +[[https://www.traccar.org/docker/|Docker]] 
 + 
 +===== Configuration ===== 
 + 
 +Configure your GT06 tracker with to send tracking info to your traccar server domain name and port 5023 (GT06 protocol): <code>#IP#123456#traccar.server.org#5023#</code> 
 +Check traccar log for device ID (it is the same as device IMEI) 
 +<file /opt/traccar/logs/tracker-server.log> 
 +...                                             
 +2019-11-20 08:32:44  WARN: Unknown device - 123456789012345 (5.173.154.100) 
 +... 
 +</file> 
 + 
 +Login to Traccar WEB UI (localhost:8082), and add device. Use IMEI as Identifier. 
 + 
 +Restart online tracking on your GT06 device (location every 60 seconds):  
 + 
 +<code> 
 +#noat#123456#  
 +#at#60#sum#0# 
 +</code> 
 + 
 + 
 +===== Traccar Web UI MOD =====
 [[http://traccar.litvak.su/installation.html]] [[http://traccar.litvak.su/installation.html]]
 +Not working with current traccar version (v 3.6)