Gps Receiver (u-blox G6050 5hz) For Arduino & Any Micro-controller With Uart

AU $29.95

  • St Ives, NSW, Australia
  • Jan 29th
GPS Receiver for Arduino is a unit embedding GPS module and antena in a small and neat enclosure. By using TinyGPS or TinyGPS++ library, an Arduino can easily retrieve geographic data (latitude and longitutde, altitude), velocity, heading angle and GMT time. The update rate is an important performance index of a GPS receiver. Most GPS in mobile phones provide an update rate of 1Hz, which means, only one set of data can be retrieved in one second. For GPS receivers with 5Hz, the data interval is much reduced and thus can be used for more demanding applications (e.g. on fast-moving vehicles). Specifications: U-BLOX G6010 solution 5Hz update rate 38400bps TTL serial interface 3.3V/5V working voltage 50-Channel receiver Extremely high sensitivity -161dBm Accuracy 2.5m (Autonomous) / <2m[SBAS] Power consumption: 3.3V @ 41mA Operating temperature: -40°C to 85°C Hot Start : 1s Warm Start : 32s Cold Start : 32s Ceramic Antena 25*25*2mm Module Size 25*28*7.5mm Enclosure Size 40x30x10mm LED indicator Line Definition: Black: RxD White: TxD Red: VCC Black (thick): GND Tutorial: To use the GPS receiver with Arduino, simply create an instance of an object like this: #include "TinyGPS.h" TinyGPS gps; Feed the object serial NMEA data one character at a time using the encode() method. (TinyGPS does not handle retrieving serial data from a GPS unit.) When encode() returns “true”, a valid sentence has just changed the TinyGPS object’s internal state. For example: void loop() { while (Serial.available()) { int c = Serial.read(); if (gps.encode(c)) { // process new gps info here } } } You can then query the object to get various tidbits of data. To test whether the data returned is stale, examine the (optional) parameter “fix_age” which returns the number of milliseconds since the data was encoded. long lat, lon; unsigned long fix_age, time, date, speed, course; unsigned long chars; unsigned short sentences, failed_checksum; // retrieves +/- lat/long in 100000ths of a degree gps.get_position(&lat, &lon, &fix_age); // time in hhmmsscc, date in ddmmyy gps.get_datetime(&date, &time, &fix_age); // returns speed in 100ths of a knot speed = gps.speed(); // course in 100ths of a degree course = gps.course(); GPS with LCD sample code GPS receiver -- Arduino VCC —————— VCC GND —————— GND RX —————— TX TX —————— RX Library:TinyGPS V1.3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 #include <TinyGPS.h> #include <LiquidCrystal.h>   TinyGPS gps; LiquidCrystal lcd(8, 9, 4, 5, 6, 7);              //LCD driver pins int led = 13;   long lat, lon; unsigned long fix_age, time, date, speed, course; unsigned long chars; unsigned short sentences, failed_checksum; //int year; //byte month, day, hour, minute, second, hundredths;   int DEG; int MIN1; int MIN2;    void LAT(){                       //Latitude state   DEG=lat/1000000;   MIN1=(lat/10000)%100;   MIN2=lat%10000;     lcd.setCursor(0,0);             // set the LCD cursor   position   lcd.print("LAT:");                lcd.print(DEG);   lcd.write(0xDF);   lcd.print(MIN1);   lcd.print(".");   lcd.print(MIN2);   lcd.print("'   "); } void LON(){                        //Longitude state   DEG=lon/1000000;   MIN1=(lon/10000)%100;   MIN2=lon%10000;     lcd.setCursor(0,1);              // set the LCD cursor   position   lcd.print("LON:");                lcd.print(DEG);   lcd.write(0xDF);   lcd.print(MIN1);   lcd.print(".");   lcd.print(MIN2);   lcd.print("'   "); }       void setup() {   Serial.begin(38400);            //Set the GPS baud rate.     pinMode(led, OUTPUT);      lcd.begin(16, 2);               // start the library   lcd.setCursor(0,0);             // set the LCD cursor   position   lcd.print("GPS test");          // print a simple message on the LCD   delay(2000); }   void loop() {   while (Serial.available())   {     digitalWrite(led, HIGH);     int c = Serial.read();                   // Read the GPS data     if (gps.encode(c))                        // Check the GPS data     {       // process new gps info here     }     }   digitalWrite(led, LOW);   gps.get_position(&lat, &lon, &fix_age);     // retrieves +/- lat/long in 100000ths of a degree   gps.get_datetime(&date, &time, &fix_age);   // time in hhmmsscc, date in ddmmyy     //gps.crack_datetime(&year, &month, &day,    //Date/time cracking   //&hour, &minute, &second, &hundredths, &fix_age);    LAT(); LON();   } Links: Introduction to GPS       NMEA Reference Manual TinyGPS - NMEA parsing library for Arduino
Condition: New Brand Freematics
Model GPS-1

Directions

Similar products from Electrical Tool Sets & Kits

People who viewed this item also vieved

By clicking "Accept All Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.

Accept All Cookies