-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sir am using GTPA010 GPS module with arduino uno am getting character and err but not getting any lat or long #4
Comments
Probably a baud rate mismatch? I think GTPAO10 defaults to 9600, but the sample code is 4800. From: Punithpeshva [mailto:[email protected]] am using GTPAO10 GPS module with antenna i used your library it will show some values for char and err but not showing any lat or long just shows garbage characters pls help me out — |
I changed it to 9600 but end up with same result :(
|
Please try to Serial.write() each character coming from the GPS, just to make sure you are getting readable data. From: Punithpeshva [mailto:[email protected]] I changed it to 9600 but end up with same result :(
— |
Make a test loop that just does this: void loop() { if (ss.available() > 0)
} Assuming you have all the baud rates correctly set up for ss and Serial, this should print readable characters on the serial monitor. From: Punithpeshva [mailto:[email protected]] Sorry I didn't get using serial.write where the data will be written I
— |
when i use serial.Write its just shwoing "9999" |
am using GTPAO10 GPS module with antenna i used your library it will show some values for char and err but not showing any lat or long just shows garbage characters pls help me out
The text was updated successfully, but these errors were encountered: