Hi,
I have the Grove Gps connected directly to my Arduino Mega 2560. The code seems to be fine, there are no error messages popping up, however, nothing is showing up on the serial monitor.
here is the code i am using:
#include <SoftwareSerial.h>
SoftwareSerial gps(2,3);
char data;
void setup()
{
Serial.begin(9600);
gps.begin(9600);
Serial.print(“Hi”);
}
void loop()
{
if(gps.available() > 0)
{
Serial.print(“Sending”);
data = gps.read();
Serial.print(data);
}
}
Any ideas or similar experiences?