Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Send gps data through gprs

Status
Not open for further replies.

rock95

Newbie level 3
Joined
Dec 19, 2006
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,330
tk-102 gprs programming

HI ALL
DEAR I SEND GPS DATA THROUGH GPRS
I HAVE SERVER IP & PORT SERVER
PLEASE SEND AT COMMAND FOR SEND GPS DATA to ip

if gprs is not available then send the information with sms

i am using sim300d

please help :cry::cry:

this is my project for practical examination.
 

send gps data

hi, i have same project requirement as per u, if u have getting any sollution ,then kindly let me know

Regards

Hitesh
 

sending data through gprs using at command manual

rock95 said:
HI ALL
DEAR I SEND GPS DATA THROUGH GPRS
I HAVE SERVER IP & PORT SERVER
PLEASE SEND AT COMMAND FOR SEND GPS DATA to ip

if gprs is not available then send the information with sms

i am using sim300d

please help :cry::cry:

this is my project for practical examination.

Hi,

Go to the SIM 300's AT command list.
Using the AT command u can do it . After non availbility of GPRS , data will send through SMS. This is called GPRS fall back system. Its very easy. Just go through the AT command. I am providing u another companier At command list.Using this At command , u can use SMS only, no GPRS.
 

send gps data http

hi

sms is a little expensive so check this out

this document can help U very easily use the gpes command to send data via gprs (gps or any other else)

be success
 

send data gprs pdp

hi

sms is a little expensive so check this out

this document can help U very easily use the gpes command to send data via gprs (gps or any other else)

be success
 

how to send gps data through gprs

Assuming you already have the GPS data in the format your server want, here's the commands you need to send. In the example below '>>' indicates data you send to the module, while'<<' indicates data returned from the module. This example is for connecting through the AT&T/Cingular network. You'll need to get the APN, user name and password for the network you are using. Also, you'll need to add your GPS data to the request.

First you need to open a PDP context.
Code:
>> AT+CGATT=1	- Attach to GPRS Service
<< OK

>> AT+CGDCONT=1,"IP","wap.cingular"	- Define PDP Context (cid, PDP type, APN)
<< OK

>> AT+CDNSCFG="208.67.222.222","208.67.220.220" - Configure Domain Name Server (primary DNS, secondary DNS)
<< OK

>> AT+CSTT="wap.cingular","wap(at)cingulargprs.com","cingular1" - Start Task & set APN, User ID, and password
<< OK

>> AT+CIICR     - Bring up wireless connection with GPRS - THIS MAY TAKE A WHILE
<< OK

>> AT+CIFSR		- Get Local IP address
<< 10.190.245.172	- returns IP address assigned to your module
<< OK

>> AT+CIPSTATUS		- Get Connection Status
<< OK
<< STATE: IP STATUS	- returns status of connection, needs to be 'IP STATUS' before you can connect to a server

After you have context, you need to make a connection to the server and then send your data.
Code:
>> AT+CIPHEAD=1		- Tells module to add an 'IP Header' to receive data
<< OK

>> AT+CDNSORIP=1	- Indicates whether connection request will be IP address (0), or domain name (1)
<< OK

>> AT+CIPSTART="TCP","www.google.com","80" - Start up TCP connection (mode, IP address/name, port)
<< OK
<< CONNECT OK		- Indicates you've connected to the server - IT MAKE TAKE A WHILE FOR THIS TO BE RETURNED

>> AT+CIPSEND		- Issue Send Command
<< >			          - wait for module to return'>' to indicate it's ready to receive data
>> GET / HTTP/1.1	- Send data - this example is an HTTP request for the default page 
>> Host: [url]www.google.com[/url]
>> Connection: Keep-Alive
>> Accept: */*
>> Accept-Language: en-us
>> 
<< data from server returned - Server will return data here
 
  • Like
Reactions: sokrat

    sokrat

    Points: 2
    Helpful Answer Positive Rating
sending data to an ip address

Hi everybody I am new here


I have got a problem with my gps unit VT300.

I dont know programming simcard. But ı make my gps units configuration via its user manual.

1. insert simcard the unit.
2. then call the sims phone
3. the unit response you sms and send location data

That 3 item is OK and it works well. but I cant make gprs connections.

At user manual it says

1. set an ID to device
2. set an IP and port to device (I set port 80 ,stop IIS)
3. set APN and APN username
4. Set interval
5. Activate TCP

I made these 5 item and got Ok confirmation SMS from the unit.

But now when I listen the port (I made an exe to listen port 80)
there is nothing at port.
So I think my gprs connection is not working.

How can I solve this problem
 

tk102 gprs config

It's not clear to me from your post what you are trying to do - and I'm not familiar with the VT300.

When you say "But now when I listen the port (I made an exe to listen port 80) there is nothing at port. " what do you mean?
Provide some more details of your setup and what you are trying to do and I'll try to provide some help.
 

get gps data using at command

I have the same problem with a gps tracker called TK-202 (sometimes saled as TK-102)
It can configured via SMS.
According to the manual I need to send 2 sms to configure it.
1
APN+password_APN Name
2.
ADMINIP+password_IP address_Port

If I understand this, I need to enter the APN name of my mobile phone provider, so it is something like internet.eplus.de
and for ADMINIP I need to enter the IP Address and a port of my machine where the data from the gps tracker will be sent.
So it is something like ADMINIP+passwort+123.45.678.90 1234
The gps is confirming my sms.

BUT I am not receiving anything... I have checked the IP I have given to the GPS by pinging it and the port listener reacted on this... so I guess something else is missing

So my questions:
1. Don't I need commands for setting up the APN user and APN password? I don't find these in the manual.
2. Did any of you know how to get emails out of such tracker? They advertise it, but have not found any information of how to do so.
3. Do you know if I can send AT commands via sms? Maybe I simply need to configure it this way.

Thanks :)
 

tk102 tracker command list

Hi

Gsm man thanks for your replay.

"When I listen port" means I make my own software with vb.net to get the gps trackers data (you know it can send data to an IP&Port).

When I run my own software it listens the port to receive the gprs trackers data but last week I couldnot receive data.

Now I made it . and everything is ok now.

vista 40721;

apn means AccespointName you can get it from your gsm provider. )It is your gsm networks gprs setting. ) You can check your APN with your mobile phone if it is correct You can connect internet with gprs.

I think your problem is with your APN.. Get it

sure it will work.. :)
 

Re: sending data to an ip address

omryldz said:
Hi everybody I am new here


I have got a problem with my gps unit VT300.

I dont know programming simcard. But ı make my gps units configuration via its user manual.

1. insert simcard the unit.
2. then call the sims phone
3. the unit response you sms and send location data

That 3 item is OK and it works well. but I cant make gprs connections.

At user manual it says

1. set an ID to device
2. set an IP and port to device (I set port 80 ,stop IIS)
3. set APN and APN username
4. Set interval
5. Activate TCP

I made these 5 item and got Ok confirmation SMS from the unit.

But now when I listen the port (I made an exe to listen port 80)
there is nothing at port.
So I think my gprs connection is not working.

How can I solve this problem

make sure gprs gsm card is active, I tried the phone first to ensure GPRS is active.

i can recieve data from gprs, im using port 9000, and make sure that port is not blocking with firewall.

now im build my own application for that vt300.
 

Re: send gps data http

sabeti_1990 said:
hi

sms is a little expensive so check this out

this document can help U very easily use the gpes command to send data via gprs (gps or any other else)

be success
hi dear friend,i m doin the same project.in this doc u ve given,a server software is mentioned. WHat is it??can u send it 2 me.
 

Re: get gps data using at command

Me too have the same problem like you. Did you find the solution?

vista40721 said:
I have the same problem with a gps tracker called TK-202 (sometimes saled as TK-102)
It can configured via SMS.
According to the manual I need to send 2 sms to configure it.
1
APN+password_APN Name
2.
ADMINIP+password_IP address_Port

If I understand this, I need to enter the APN name of my mobile phone provider, so it is something like internet.eplus.de
and for ADMINIP I need to enter the IP Address and a port of my machine where the data from the gps tracker will be sent.
So it is something like ADMINIP+passwort+123.45.678.90 1234
The gps is confirming my sms.

BUT I am not receiving anything... I have checked the IP I have given to the GPS by pinging it and the port listener reacted on this... so I guess something else is missing

So my questions:
1. Don't I need commands for setting up the APN user and APN password? I don't find these in the manual.
2. Did any of you know how to get emails out of such tracker? They advertise it, but have not found any information of how to do so.
3. Do you know if I can send AT commands via sms? Maybe I simply need to configure it this way.

Thanks :)
 

Re: tk-102 gprs programming

Dear Sir,

we are informed that you are looking for gps/gprs module, therefore here writing to you with the expecation of setting up a priviledge cooperation.

our company is establised in 1994, which is specialized in manufacturing electronic components, including wireless module, gsm/gps/gprs module, gps antenna, gps tracking system, and so on. ( www.khdtech.com)

according to your information, we quota you SIM300D as follows:

SIM300D 100PCS $22/PCS
SIM300D 500PCS $19/PCS
SIM300D 1000PCS $18.5/PCS

should you have any question or need more information, please feel free to contact us.

looking forward to hearing from you soon.

thank you & best regards,

Hally

*******************************************************************
KHD (H.K.) INTERNATIONAL LTD
email: hally@khdtech.com
website: www.khdtech.com
tel: 86-755-83258567
msn: hally@khdtech.com
skype: hally126
*******************************************************************


rock95 said:
HI ALL
DEAR I SEND GPS DATA THROUGH GPRS
I HAVE SERVER IP & PORT SERVER
PLEASE SEND AT COMMAND FOR SEND GPS DATA to ip

if gprs is not available then send the information with sms

i am using sim300d

please help :cry::cry:

this is my project for practical examination.
 

Hi,
I've just bought this TK102 tracker and Ican send sms and it replies ok, but the ALERT functions are not working at all , even the SOS ! Other functions like auto track is working. It looks to me then its inner softwer has a problem, because it works when I ask but no other times. Can help somebody? Its not gprs question its a simple sms programing.
Regards
Otto
 

Hi Guys

Is there anybody who can help me?
If pressing the SOS button and ther is no reply meand the device wrong ? Of course the admin number is set.
Regrds
Otto
 

hi,

if u found a solution plz let me know

thx in advance\]
 

Hi enjjoey,

Do you have the same problem?
regards
 

May be I can give you a hands.

David from Xexun

xexunexport at gmail.com
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top