Wish List 0

Skg13C Gps With External 3 Meter Antenna Ttl And Rs232 Output

Rs. 978.00 Rs. 1,125.00

  • Product Code: GPS
  • SKU - SE-3453
  • Availability: In Stock
  • Price in reward points: 10
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This GPS Receiver SKG13C With External Active Antenna is easy to use with PC or MCU.
-The Skylab SKG13 series is a whole GPS receiver module that functions extraordinary sensitivity, ultra low electricity and small shape thing, Dual Power Source.
-The GPS signal is implemented to the antenna input of module, and a complete serial data message with function, speed and time information is supplied on the serial interface with NMEA protocol or custom protocol.

-It is based on the excessive performance capabilities of the MediaTek 3329 unmarried-chip architecture, Its -165dBm monitoring sensitivity extends positioning insurance into vicinity like city canyons and dense foliage environment wherein the GPS was now not feasible before.
-The small shape issue and low power consumption make the module smooth to integrate into portable tool like PNDs, mobile phones, cameras and vehicle navigation structures.


Features:
-Ultra high sensitivity: -165dBm
-Extremely fast TTFF at low signal level
-Built-in 12 multi-tone active interference canceller
-Low power consumption: Typical 18mA@3.3V
-10ns high accuracy time pulse (1PPS)
-Advanced Features: AlwaysLocate; AIC; EPO;EASY
-QZSS,SBAS(WAAS,EGNOS,MSAS,GAGAN)
-Indoor and outdoor multi-path detection and compensation
-Small form factor: 15x13x2.2mm
-RoHS compliant (Lead-free)"

PACKAGE INCLUDES:

1 PCS x Skg13C Gps With External 3 Meter Antenna Ttl And Rs232 Output


SAMPLE CODING

#include <LiquidCrystal.h>

LiquidCrystallcd(2,3,4,5,6,7);

#include <TinyGPS++.h>

#include <SoftwareSerial.h>


String inputString = "",MsgNumString = "",MsgString = "",Msgformat="+CMT: ",Msgkey="";         // a string to hold incoming data

booleanstringComplete = false,FlagMsg = false,FlagMsgNum = false;  // whether the string is complete

charphone_no[]="8939471015";

/*

   This sample sketch demonstrates the normal use of a TinyGPS++ (TinyGPSPlus) object.

   It requires the use of SoftwareSerial, and assumes that you have a

   4800-baud serial GPS device hooked up on pins 4(rx) and 3(tx).

*/

staticconstintRXPin = 8, TXPin = 9;

staticconst uint32_t GPSBaud = 9600;


// The TinyGPS++ object

TinyGPSPlusgps;


// The serial connection to the GPS device

SoftwareSerialss(RXPin, TXPin);


int count = 0;

char flag = 0;


void setup()

{

lcd.begin(16, 2);

lcd.setCursor(0,0);lcd.print("LCD OK");

delay(2000);

lcd.clear();

ss.begin(GPSBaud);


lcd.setCursor(0,0);lcd.print("GSM OK");

delay(2000);

lcd.clear();

}

void loop()

{

  // This sketch displays information every time a new sentence is correctly encoded.

while (ss.available() > 0)

if (gps.encode(ss.read()))

displayInfo();


if (millis() > 5000 &&gps.charsProcessed() < 10)

  {

Serial.println(F("No GPS detected: check wiring."));

while(true);

lcd.setCursor(0,0);lcd.print("No GPS detected ");

  }

}


voiddisplayInfo()

{

if (gps.location.isValid())

  {

lcd.clear();

lcd.setCursor(0,0);lcd.print("LAT  :  ");lcd.print(gps.location.lat());

lcd.setCursor(0,1);lcd.print("LONG : ");lcd.print(gps.location.lng());

  }

else

  {

lcd.setCursor(0,0);lcd.print("INVALID         ");

  }


if (stringComplete) 

      {

if(FlagMsg)

        {

          Msgkey=MsgString.substring(MsgString.indexOf('*')+1,MsgString.indexOf('#'));


if(Msgkey.equals("TRACK"))

lcd.setCursor(0,1);lcd.print("Messege Sent....");delay(1000); lcd.clear();

flag = 1;

            }         


Msgkey="";

MsgString="";

FlagMsg=false;

inputString = "";

stringComplete = false;

       }

     }

if(flag == 1)

     {

count++;

delay(1000);

     }


if(count == 60)

     {

lcd.setCursor(0,1);lcd.print("Messege Sent....");delay(1000); lcd.clear();        

count = 0;

     }

}




OUTPUT FOR GPS SKG


 


15 days

Write a review

Please login or register to review