| Versions |
 |
|
| Author |
Topic  |
|
wifi
66 Posts |
|
|
dymo
Germany
133 Posts |
|
|
wifi
66 Posts |
Posted - 30 août 2009 : 19:33:55
|
dymo,
I did, but the picture on page 59 is not really clear.
|
 |
|
|
GPSTrackeri
16 Posts |
Posted - 30 août 2009 : 20:01:03
|
wifi: I'm 99% sure that your device is a clone because it looks so amateurish made. Components are not in lined up. I have also opened many real Xexun devices and they always look professional manufactured from inside. And what comes to compare pictures, see that SIM card holder's round holes.. |
 |
|
|
wifi
66 Posts |
Posted - 30 août 2009 : 20:08:01
|
Thank you for the info.
I also think that it's a clone, and it's true that the SIM card holder has round holes, but the USB port, GSM module, GPS antenna, and microphone looks okay.... Than again the battery looks like a clone.
I think that like ionic, I will try to order my new version directly from Xexun. |
Edited by - wifi on 30 août 2009 20:09:31 |
 |
|
|
0Cyril0
France
24 Posts |
Posted - 31 août 2009 : 09:26:54
|
Hi all,
As promised sources of my developpement :
I've this php script launched as CLI : - http://feraudet.com/gps/tracker
Who insert data from TK102 into a MySQL database like this :
CREATE DATABASE `tracker`;
CREATE TABLE IF NOT EXISTS `gprmc` (
`id` int(11) NOT NULL auto_increment,
`date` timestamp NOT NULL default CURRENT_TIMESTAMP,
`imei` varchar(17) NOT NULL,
`phone` varchar(20) default NULL,
`trackerdate` varchar(10) NOT NULL,
`satelliteDerivedTime` varchar(10) NOT NULL,
`satelliteFixStatus` char(1) NOT NULL,
`latitudeDecimalDegrees` varchar(12) NOT NULL,
`latitudeHemisphere` char(1) NOT NULL,
`longitudeDecimalDegrees` varchar(12) NOT NULL,
`longitudeHemisphere` char(1) NOT NULL,
`speed` float NOT NULL,
`bearing` float NOT NULL,
`utcDate` varchar(6) NOT NULL,
`checksum` varchar(10) NOT NULL,
`gpsSignalIndicator` char(1) NOT NULL,
`other` varchar(50) default NULL,
PRIMARY KEY (`id`),
KEY `imei` (`imei`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
For showing collected data I've 2 php scripts wrote with my feet :
http://feraudet.com/gps/index.php?sources=show and http://feraudet.com/gps/kml.php?sources=show
Enjoy your GPS,
Cyril Feraudet
|
My TK102 in realtime http://feraudet.com/gps/ http://feraudet.com/gps/geo.html |
 |
|
|
wifi
66 Posts |
Posted - 31 août 2009 : 09:38:17
|
Looks nice, but maybe you should remove your server IP in http://feraudet.com/gps/tracker
I've ordered a new TK102 directly from xexun.com As soon as it's in I'll give it a test run |
 |
|
|
0Cyril0
France
24 Posts |
Posted - 31 août 2009 : 10:12:10
|
If I found time, I will rewrite all script to permit owner of TK102 to use my server.
About SMS commands used to configure TK102 :
begin123456
> BEGIN ok
password123456 XXXXXX
> PASSWORD ok
adminXXXXXX 0033663XXXXXX
> ADMIN ok
apnXXXXXX internetneuf
> APN ok
adminipXXXXXX 88.191.223.158 1025
> ADMINIP ok
t030s***nXXXXXX
> T030S***N ok
Cyril Feraudet |
My TK102 in realtime http://feraudet.com/gps/ http://feraudet.com/gps/geo.html |
 |
|
|
wifi
66 Posts |
Posted - 31 août 2009 : 10:34:41
|
quote: If I found time, I will rewrite all script to permit owner of TK102 to use my server.
Sounds like fun. Let me know if you need some help. I'm more a coldfusion coder, but if needed I can do some work on PHP also.
quote: t030s***nXXXXXX > T030S***N ok
I never get the "T030S***N ok" back from the 102. I guess it's because I've got a cloned version.
Keep up the good work. |
 |
|
|
dinobox
4 Posts |
Posted - 31 août 2009 : 11:32:46
|
@keepkool - I have problem also as I started to configure my server, first setup the APN,admin IP and port , everythings ok, setup by sms. I use pearl script to receive the data from TK102 and it still doesn't work. question: 1. what protocol that TK102 use to enable send data by GPRS? 2. can you share your experience regard on your server/apps configuration?
Thanks for your help..
|
 |
|
|
0Cyril0
France
24 Posts |
Posted - 31 août 2009 : 11:49:50
|
The protocol used by TK102 is NMEA :
$GPRMC,aaaaaa,b,cccc.cc,d,eeeee.ee,f,ggg.g,hhh.h,jjjjjj,kkk.k,l*mm
Where:
* aaaaaa is the time of the fix UTC in hhmmss format * b is the validity of the fix ("A" = valid, "V" = invalid) * cccc.cc is the current latitude in ddmm.mm format * d is the latitude hemisphere ("N" = northern, "S" = southern) * eeeee.ee is the current longitude in dddmm.mm format * f is the longitude hemisphere ("E" = eastern, "W" = western) * ggg.g is the speed in knots * hhh.h is the true course in degrees * jjjjjj is the date in DDMMYY format * kkk.k is the magnetic variation in degrees * l is the direction of magnetic variation ("E" = east, "W" = west) * mm is the checksum
Just before GPRMC sentence there is the TK102 timestamp and the admin telephone number.
There are 2 usefull unix command to test IP feature of TK102 :
- netcat -l -p <the_port_you_want> -s <your_IP> For listen on a port
- echo '0908242216,003366000000,GPRMC,212442.000,A,4849.0475,N,00219.4763,E,2.29,,220809,,,A*70,L,imei:359587010000000,101Q,'|netcat <your_IP> <the_port_you_want> To simulate a TK102 who send something with the ADMINIP feature
@wifi : It's bad luck about clone. The quality of the original TK102 is not very good. I had to repair the power connector by soldering wire directly on the PCB board few days after the first use ... |
My TK102 in realtime http://feraudet.com/gps/ http://feraudet.com/gps/geo.html |
 |
|
|
suicida
Greece
2 Posts |
Posted - 31 août 2009 : 12:28:35
|
Hello everybody,
I've just bought a GPS-102, I don't know if it is a clone one or the original. My question is if there is any way to add the www.wxlxy.com link at the end of SMS.
Thank you in advance.
|
 |
|
|
dinobox
4 Posts |
Posted - 31 août 2009 : 12:39:08
|
@0Cyril0, The server even can't receive data from TK102, I'll try to run your PHP script on my server. I'll inform you wheter it can receive or not.
Anyway, Thanks for your help.
|
 |
|
|
0Cyril0
France
24 Posts |
Posted - 31 août 2009 : 14:09:47
|
dinobox, in my script there is a condition :
if($gpsSignalIndicator != 'L')
Who eliminate NMEA sentences whit a low gps signal (typically "no signal" sentences). If you are inside your home maybe you don't have GPS signal. You can use tcpdump or ngrep under linux for debug TCP connexion.
Cyril
|
My TK102 in realtime http://feraudet.com/gps/ http://feraudet.com/gps/geo.html |
 |
|
|
liamh
2 Posts |
Posted - 01 sept. 2009 : 11:50:51
|
Hi, first time I have posted on this forum. I have just got a TK201 tracker and have got it to work with SMS and GPRS but I am having problems if the tracker looses GPS signal. The GSM is switched off when it looses GPS signal and will not switch back on when GPS signal is back. This makes it useless as a tracker. The only way to get it back on again is to remove the power. My supplier is sending my the USB cable and updated firmware to fix the problem. I have never tryed to do this sort of thing before so could someone please give me step by step instructions on how to change the firmware on this device. Thanks Liam |
 |
|
Topic  |
|
|
|
| This page was generated in 1,28 seconds. |
 |
|