Hi guys,
I'm working on my project, but i have a problem. I'm using TinyGPS++ library. I want to memory a latitude value in a variable but It don't work.
Serial.println("Latitude= ");
Serial.println(gps.location.lat(), 6); // OK, It works.
double temp_lat = (gps.location.lat(), 6);
Serial.println(temp_lat); // It doesn't work.