Hi, all. I am working with the TinyGPSPlus library, I am trying to save the location dd.mm values into a variable, but I'm trying to get a decimal value greater than two decimal places. I am following the same scheme as Serial.print():
Serial.print(gps.location.lat(), 6);
which produces the latitude to the 6th place beyond the decimal
Without the ", 6" I only receive the latitude to the second place beyond the variable.