Used the code :
#include<SoftwareSerial.h>
SoftwareSerial NEO6M(2,3);
void setup() {
Serial.begin(115200);
NEO6M.begin(9600);
}
void loop() {
while(NEO6M.available() > 0){
Serial.write(NEO6M.read());
}
}
For now, the output is a fixed random value
Post an example of the output (cut and paste from the serial monitor).
In addition to being outdoors, GPS units need a clear view of the sky.
1 Like
When you post code please use code tags.
system
Closed
5
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.