Read the number of satellites being tracked by the GPS.
GPS.satellites()
None.
The number of satellites being tracked by the GPS.
// Check if there is new GPS data available
if (GPS.available()) {
// Read GPS values
int satellites = GPS.satellites();
// ...
// Print GPS data
Serial.print("Number of satellites: ");
Serial.println(satellites);
}