Skylab SKM53 How To Connect Download Page 1

CH GPS SKM53 MODULE 

User Manual 

 

How to connect 

Skylab SKM53 GPS

 to Arduino

 

1)Connect RXD GPS Pin to Arduino Pin 3
2)Connect TXD GPS Pin to Arduino Pin 2
3)Connect GND GPS Pin to Arduino Ground
4)Connect VCC GPS to 5 VDC
5)Make sure to download TinyGPS.h library file to your 
Arduino/Libraries folder. You can download it from this 
link:

!

http://arduiniana.org/TinyGPS/TinyGPS10.zip

.

6)Make sure to download NewSoftSerial.h library file to 
your Arduino/Libraries folder. You can download it from 
this link:

 

http://arduiniana.org/

libraries

/

newsoftserial

/

7)Upload the Arduino code below.

w w w . e k t

2

. c o m

Electronics 

Katrangi

 Trading

 

Arduino Code For Skylab SKM53 GPS

 

#include <TinyGPS.h>
#include <NewSoftSerial.h>

unsigned long fix_age;

NewSoftSerial GPS(2,3);
TinyGPS gps;
void gpsdump(TinyGPS &gps);
bool feedgps();
void getGPS();
long lat, lon;
float LAT, LON;

Reviews: