Skip to content

Commit 7cd105b

Browse files
committed
Add comment about NMEA parsing
1 parent d8d288a commit 7cd105b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/GSM/examples/GNSSClient/GNSSClient.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <GPS.h>
22
#include <GSM.h>
33

4-
REDIRECT_STDOUT_TO(Serial);
5-
64
#include "arduino_secrets.h"
75
char pin[] = SECRET_PIN;
86
char apn[] = SECRET_APN;
@@ -26,6 +24,8 @@ void setup() {
2624
}
2725

2826
void loop() {
27+
// Print out raw NMEA strings.
28+
// For parsed output look at the MicroNMEA_integration example.
2929
if(GPS.available()){
3030
Serial.print((char) GPS.read());
3131
delay(1);

0 commit comments

Comments
 (0)