Skip to content

Commit 302ea3e

Browse files
committed
Updating more library .h links in the examples
1 parent 042a27b commit 302ea3e

File tree

40 files changed

+40
-40
lines changed

40 files changed

+40
-40
lines changed

examples/Example10_AltitudeMSL/Example10_AltitudeMSL.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#include <Wire.h> //Needed for I2C to GNSS
3232

33-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
33+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3434
SFE_UBLOX_GNSS myGNSS;
3535

3636
long lastTime = 0; //Tracks the passing of 2000ms (2 seconds)

examples/Example12_UseUart/Example12_UseUart.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Open the serial monitor at 115200 baud to see the output
2828
*/
2929

30-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
30+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3131
SFE_UBLOX_GNSS myGNSS;
3232

3333
#include <SoftwareSerial.h>

examples/Example13_PVT/Example3_AutoPVTviaUart/Example3_AutoPVTviaUart.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
Open the serial monitor at 115200 baud to see the output
2929
*/
3030

31-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
31+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3232
SFE_UBLOX_GNSS myGNSS;
3333

3434
#include <SoftwareSerial.h>

examples/Example13_PVT/Example4_AssumeAutoPVTviaUart/Example4_AssumeAutoPVTviaUart.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Open the serial monitor at 115200 baud to see the output
3030
*/
3131

32-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
32+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3333
SFE_UBLOX_GNSS myGNSS;
3434

3535
#include <SoftwareSerial.h>

examples/Example14_DebugOutput/Example14_DebugOutput.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
Open the serial monitor at 115200 baud to see the output
2727
*/
2828

29-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
29+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3030
SFE_UBLOX_GNSS myGNSS;
3131

3232
unsigned long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

examples/Example15_GetDateTime/Example15_GetDateTime.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <Wire.h> //Needed for I2C to GNSS
2828

29-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
29+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3030
SFE_UBLOX_GNSS myGNSS;
3131

3232
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

examples/Example16_Nanosecond_MaxOutput/Example16_Nanosecond_MaxOutput.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#include <Wire.h> //Needed for I2C to GNSS
3030

31-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
31+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3232
SFE_UBLOX_GNSS myGNSS;
3333

3434
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

examples/Example16_PartialSecond_MaxOutput/Example16_PartialSecond_MaxOutput.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include <Wire.h> //Needed for I2C to GNSS
2929

30-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
30+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3131
SFE_UBLOX_GNSS myGNSS;
3232

3333
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

examples/Example17_Geofence/Example17_Geofence.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include <Wire.h> // Needed for I2C
3131

32-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
32+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3333
SFE_UBLOX_GNSS myGNSS;
3434

3535
void setup()

examples/Example18_PowerSaveMode/Example18_PowerSaveMode.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
#include <Wire.h> //Needed for I2C to GNSS
4242

43-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
43+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
4444
SFE_UBLOX_GNSS myGNSS;
4545

4646
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

0 commit comments

Comments
 (0)