-
Notifications
You must be signed in to change notification settings - Fork 494
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
GPS TEL0094 #136
Comments
We all started somewhere...However... these githubs are library issues, not really for hardware or script debugging. A quick google on MY part shows the following for this module. 9600bps (default) (4800, 9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600) TTL interface Notice the default 9600bps(default) line. Hope this helps. Google is your friend. |
@PoloLastik, I note that you have declared pin 6 as your RX pin in the SoftwareSerial ss declaration, but then written that you connected pin 6 to the GPS RX pin. Remember that RX from the microcontroller's viewpoint is TX from the GPS module's. The easiest fix at this point would be to change your software a bit: SoftwareSerial ss(5, 6); And yes, @TD-er is right: most modules these days are 9600 baud. |
This time it wasn't me who replied :) |
Ha, whoops, indeed. Credit where credit is due: sorry, @svdrummer :) |
One more note: it's undeniably confusing, but this is the repo for the (imo) slightly more sophisticated TinyGPS++ library, whereas @PoloLastik's sample code is using the old TinyGPS. (I'm not suggesting you change, @PoloLastik, just observing the difference for later readers.) |
Struggle with TinyGPSPlus and GPS TEL0094
Hello,
I am a beginner on Arduino. I am using a GPS TEL0094 pluged on a Adafruit Feather 32u4 RFM95 LoRa Radio. I have my GPS Module which works with the lights (Power light red constantly and green lignht (PPS light) which alternate between On and off every second). This example was used with the library TinyGps and is from there but I think that however it should still work. My pineout is the following.
GPS -> Feather32u4
VCC -> 3.3 V
GND -> GND
RX -> Pin 6
TX -> Pin 5
EN -> Nothing
PPS -> Nothing
Here is my Code
Here is my output :
I am aware that the Rx and Tx must be inversed and I took care of that. I know that the GPS needs 30 seconds to start. I am not quite sure of the PPS and EN purpose despite I read the GPS datasheet several times.
Could somoene help me with this issue ?
The text was updated successfully, but these errors were encountered: