Fast Shipping.
All orders delivered fast
Quality Products.
Products tested for quality
Secure Payments.
Pay online securely with ssl
Customer Support.
We answer all your questions
Weight | 19 kg |
---|---|
Dimensions | 25 × 35 cm |
The NEO6MV2 GPS module comes with 4 connections: RX, TX, VCC and GND, which is quite easy to incorporate with using SoftwareSerial on an Arduino Uno or a serial interface on an Arduino Mega. There is only one little problem: The module uses 3v3 logic, which is not compatible with the 5v supplied by Arduino. However, a simple voltage divider can solve this issue.
Specification:
1.Supply Voltage:2.7 to 3.6V
2.Supply current:67 mA
3.Antenna gain:50 dB
4.Operating temperature:-40 to 85°C
5.Antenna Type:Passive and active antenna
6.Interfaces:UART,USB,SPI,DDC
7.Sensitivity-
Program for GPS6MV2 Module:
#include <SoftwareSerial.h> //Create software serial object to communicate with GPS SoftwareSerial gps(10,11); void setup() { //Begin serial communication with Arduino and Arduino IDE (Serial Monitor) Serial.begin(9600); while(!Serial); //Being serial communication with Arduino and GPS Module //Important rate must be 9600 gps.begin(9600); delay(1000); Serial.println("Setup Complete!"); } void loop() { if(gps.available()){ Serial.write(gps.read()); } if(Serial.available()){ gps.write(Serial.read()); } }
Only logged in customers who have purchased this product may leave a review.
All orders delivered fast
Products tested for quality
Pay online securely with ssl
We answer all your questions
Official Online Component online store. Get the best quality components for your next project with us.
No account yet?
Create an Account
Reviews
There are no reviews yet.