JL_IA7 0.1.0

Getting datas from GPS
1
2
3
4
5
6
7
8
9
10
11
12
13
// the setup routine runs once when you press reset:
void setup() {
  // initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
}

// the loop routine runs over and over again forever:
void loop() {
  
  Serial.println("$GPGGA,112503.101,6507.4485,N,02255.5355,W,1,04,2.26,17.7,M,60.6,M,,*44");
  Serial.println("$GPGSA,A,3,28,30,20,15,,,,,,,,,2.45,2.26,0.93*02");
  delay(500);
}