NEO-6M-GPS

NEO-6M-GPS

This page is to Setup and Config NEO-6M-GPS

Hardware and Software

Hardware

NEO-6M-GPS and Arduino

Software

1. Arduino

Support :

    • ( Arduino ) http://www.instructables.com/id/How-to-Communicate-Neo-6M-GPS-to-Arduino/

    • ( Windows )http://www.instructables.com/id/Arduino-Ublox-GPS/

    • ( Chinese ) https://www.taiwaniot.com.tw/shop/module-sensor/gps-%E5%AE%9A%E4%BD%8D%E6%A8%A1%E7%B5%84/ublox-neo-6m-v2-gps/

    • ( Sample ) https://cristiansteib.github.io/Gps-neo-6m

Example :

    • http://www.semageek.com/diy-fabriquer-un-petit-cube-gps-a-base-arduino/

    • http://arduinostuff.blogspot.hk/2014/05/neo6mv2-gps-module-with-arduino-uno-how.html

    • http://arduinotronics.blogspot.hk/2014/02/arduino-ublox-neo-6m-gps.html

    • http://www.instructables.com/id/How-to-Communicate-Neo-6M-GPS-to-Arduino/

Sanki Notes

Examples

Examples

        1. #include <SoftwareSerial.h> SoftwareSerial ESPserial(2, 3); // RX | TX void setup() { Serial.begin(9600); // communication with the host computer //while (!Serial) { ; } // Start the software serial for communication with the ESP8266 ESPserial.begin(9600); Serial.println(""); Serial.println("Remember to to set Both NL & CR in the serial monitor."); Serial.println("Ready"); Serial.println(""); } void loop() { // listen for communication from the ESP8266 and then write it to the serial monitor if ( ESPserial.available() ) { Serial.write( ESPserial.read() ); } // listen for user input and send it to the ESP8266 if ( Serial.available() ) { ESPserial.write( Serial.read() ); } }

        2. $GPRMC,,V,,,,,,,,,,N*53 $GPVTG,,,,,,,,,N*30 $GPGGA,,,,,,0,00,99.99,,,,,,*48 $GPGSA,A,1,,,,,,,,,,,,,99.99,99.99,99.99*30 $GPGLL,,,,,,V,N*64