Hi guys, I have a question, 2 days ago my gy gps6mv2 was working but suddenly today the blue led isn't on and I get all time this output:
$GPRMC,163335.856,V,,,,,,,241017,,,N46
$GPGGA,163336.854,,,,,0,00,,,M,0.0,M,,00005D
$GPGSA,A,1,,,,,,,,,,,,,,,1E
$GPRMC,163336.854,V,,,,,,,241017,,,N47
The way I connected it:
My code:
#include <SoftwareSerial.h>
SoftwareSerial gps(4,3);
char dato=' ';
void setup()
{
Serial.begin(9600);
gps.begin(9600);
}void loop()
{
if(gps.available())
{
dato=gps.read();
Serial.print(dato);
}
}
extra: u-center doesnt recognize gps position