Hello I'm a student and new to Arduino. We have a project of creating a GPS system and I decided to use the neo 6m GPS. So here is my set up.
Transceiver:
Neo 6M GPS
HC 12 - (Transmitter)
voltage regulator
Receiver:
HC 12 - (Receives from transmitter)
Arduino uno (Read and interprets data)
Is this enough? wirings will come later if these ones are ok
Start with one GPS module, and one Arduino, and make sure you get that working correctly and receiving valid data, before thinking about radios.
The diagram posted above suggests to connect a 3.3V GPS module to a 5V Arduino without using logic level converters, which can destroy both the GPS module and the Arduino.
I recommend to avoid that tutorial.
I tried the serial monitor thing, where you have to convert it for a proper latitude and longitude without injecting code.
So, it only needs a voltage regulator right? but can I ask why it needs two GPS modules?
Sorry, I have no idea what that means.
This GPS echo program will work with any module. If you are using a 5V Arduino, make sure that you know how to safely connect a 3.3V GPS module.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); //GPS (RX, TX), Only GPS TX is needed. Check correct pin assignments and baud rate
void setup() {
mySerial.begin(9600);
Serial.begin(9600);
Serial.println("GPS start");
}
void loop() {
while (mySerial.available()) {
Serial.write(mySerial.read());
}
}
1 Like
Hi, @danielo127
This will help.
Learn how get location from GPS module using Arduino and NEO-6M GPS module, learn how to get GPS coordinates (longitude, latitude, altitude), speed and date time, how to connect GPS module to Arduino, how to program Arduino step by step.
Have you Googled;
arduino gps
Can you please tell us your electronics, programming, arduino, hardware experience?
If you are just starting out, then begin with small steps, before getting totally into your main project.
Tom...
1 Like
system
Closed
August 14, 2023, 4:30am
9
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.