0

I bought a GPS module with GPS antenna SIM39EA online.

The manual for the GPS module is here:

http://www.vis-plus.ee/pdf/SIM39EA_Hardware_Design_V1.00.pdf

I have an Arduino board. It has 3 ground pin, one Vcc and two input/output pin.

I want to know how can I connect this module to Arduino GPS module and get GPS coordinates?

per1234
4,2782 gold badges23 silver badges43 bronze badges
asked Sep 28, 2015 at 15:50
2
  • Please post a link to the board datasheet, or at least some information about it. Which Arduino do you have? Commented Sep 28, 2015 at 23:39
  • here it is the manual of gps module please use this link to download manual www.vis-plus.ee/pdf/SIM39EA_Hardware_Design_V1.00.pdf I am trying to connect it with Arduino UNO R3 board with DIP ATmega328P Commented Sep 29, 2015 at 4:17

1 Answer 1

0

Your data comes back via the GPS's UART port.
Use the softserial library to create a second serial port on your Arduino (means you can still use the normal serial to read the console).

Then write a program that sucks data from the GPS and squirts it out of the Arduino serial port back to your PC using printf.

I only had a quick flick through and didn't see the default serial speed, so start with 9600 and experiment.

What should come out is probably a line of comma separated values which is in NEMA format. Google for the specification and you will be able to find out the bits of interest.

Hope that helps.

answered Sep 29, 2015 at 15:06
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.