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

Diff for: examples/Example10_AltitudeMSL/Example10_AltitudeMSL.ino

+1-1
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)

Diff for: examples/Example12_UseUart/Example12_UseUart.ino

+1-1
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>

Diff for: examples/Example13_PVT/Example3_AutoPVTviaUart/Example3_AutoPVTviaUart.ino

+1-1
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>

Diff for: examples/Example13_PVT/Example4_AssumeAutoPVTviaUart/Example4_AssumeAutoPVTviaUart.ino

+1-1
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>

Diff for: examples/Example14_DebugOutput/Example14_DebugOutput.ino

+1-1
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.

Diff for: examples/Example15_GetDateTime/Example15_GetDateTime.ino

+1-1
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.

Diff for: examples/Example16_Nanosecond_MaxOutput/Example16_Nanosecond_MaxOutput.ino

+1-1
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.

Diff for: examples/Example16_PartialSecond_MaxOutput/Example16_PartialSecond_MaxOutput.ino

+1-1
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.

Diff for: examples/Example17_Geofence/Example17_Geofence.ino

+1-1
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()

Diff for: examples/Example18_PowerSaveMode/Example18_PowerSaveMode.ino

+1-1
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.

Diff for: examples/Example19_DynamicModel/Example19_DynamicModel.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
#include <Wire.h> //Needed for I2C to GNSS
3939

40-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
40+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
4141
SFE_UBLOX_GNSS myGNSS;
4242

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

Diff for: examples/Example1_BasicNMEARead/Example1_BasicNMEARead.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <Wire.h> //Needed for I2C to GNSS
2525

26-
#include "SparkFun_Ublox_Arduino_Library.h" //Click here to get the library: http://librarymanager/All#SparkFun_Ublox_GPS
26+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //Click here to get the library: http://librarymanager/All#SparkFun_Ublox_GPS
2727
SFE_UBLOX_GNSS myGNSS;
2828

2929
void setup()

Diff for: examples/Example20_SendCustomCommand/Example20_SendCustomCommand.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#include <Wire.h> //Needed for I2C to GNSS
3838

39-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
39+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
4040
SFE_UBLOX_GNSS myGNSS;
4141

4242
void setup()

Diff for: examples/Example21_ModuleInfo/Example21_ModuleInfo.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
#define MAX_PAYLOAD_SIZE 384 // Override MAX_PAYLOAD_SIZE for getModuleInfo which can return up to 348 bytes
4141

42-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
42+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
4343

4444
// Extend the class for getModuleInfo
4545
class SFE_UBLOX_GPS_ADD : public SFE_UBLOX_GNSS

Diff for: examples/Example22_PowerOff/Example22_PowerOff.ino

+1-1
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
// define a digital pin capable of driving HIGH and LOW

Diff for: examples/Example2_NMEAParsing/Example2_NMEAParsing.ino

+1-1
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
#include <MicroNMEA.h> //http://librarymanager/All#MicroNMEA

Diff for: examples/Example3_GetPosition/Example3_GetPosition.ino

+1-1
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; //Simple local timer. Limits amount if I2C traffic to u-blox module.

Diff for: examples/Example4_FixType/Example4_FixType.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
#include <Wire.h> //Needed for I2C to GNSS
3636

37-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
37+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3838
SFE_UBLOX_GNSS myGNSS;
3939

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

Diff for: examples/Example5_SpeedHeadingPrecision/Example5_SpeedHeadingPrecision.ino

+1-1
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.

Diff for: examples/Example6_EnableNMEASentences/Example6_EnableNMEASentences.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
#include <Wire.h> //Needed for I2C to GNSS
3131

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

3535
unsigned long lastGNSSsend = 0;

Diff for: examples/Example7_OutputRate/Example7_OutputRate.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include <Wire.h> //Needed for I2C to GNSS
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
unsigned long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

Diff for: examples/Example8_GetProtocolVersion/Example8_GetProtocolVersion.ino

+1-1
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.

Diff for: examples/Example8_GetProtocolVersion_Serial/Example8_GetProtocolVersion_Serial.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
// - or -
3636
//SoftwareSerial mySerial(10, 11); // Uncomment this line to connect via SoftwareSerial(RX, TX). Connect pin 10 to GNSS TX pin.
3737

38-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
38+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
3939
SFE_UBLOX_GNSS myGNSS;
4040

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

Diff for: examples/Example9_ChangeI2CAddress/Example9_ChangeI2CAddress.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#include <Wire.h> //Needed for I2C to GNSS
2424

25-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
25+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2626
SFE_UBLOX_GNSS myGNSS;
2727

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

Diff for: examples/NEO-M8P-2/Example1_EnableRTCM/Example1_EnableRTCM.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include <Wire.h> //Needed for I2C to GNSS
2626

27-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
27+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2828
SFE_UBLOX_GNSS myGNSS;
2929

3030
void setup()

Diff for: examples/NEO-M8P-2/Example2_StartRTCMBase/Example2_StartRTCMBase.ino

+1-1
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
void setup()

Diff for: examples/NEO-M8P-2/Example3_BaseWithLCD/Example3_BaseWithLCD.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

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

34-
#include "SparkFun_Ublox_Arduino_Library.h" //Click here to get the library: http://librarymanager/All#SparkFun_u-blox_GNSS
34+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //Click here to get the library: http://librarymanager/All#SparkFun_u-blox_GNSS
3535
SFE_UBLOX_GNSS myGNSS;
3636

3737
#include <SerLCD.h> //Click here to get the library: http://librarymanager/All#SparkFun_SerLCD

Diff for: examples/ZED-F9P/Example10_GetHighPrecisionPositionAndAccuracy/Example10_GetHighPrecisionPositionAndAccuracy.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <Wire.h> //Needed for I2C to GNSS
2525

26-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
26+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2727
SFE_UBLOX_GNSS myGNSS;
2828

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

Diff for: examples/ZED-F9P/Example11_GetHighPrecisionPositionUsingDouble/Example11_GetHighPrecisionPositionUsingDouble.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define myWire Wire // This will work on the Redboard Artemis and the Artemis Thing Plus using Qwiic
3030
//#define myWire Wire1 // Uncomment this line if you are using the extra SCL1/SDA1 pins (D17 and D16) on the Thing Plus
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
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

Diff for: examples/ZED-F9P/Example12_setStaticPosition/Example12_setStaticPosition.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include <Wire.h> //Needed for I2C to GNSS
2626

27-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
27+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2828
SFE_UBLOX_GNSS myGNSS;
2929

3030
void setup()

Diff for: examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
WiFiClient client;
3737

3838
#include <Wire.h> //Needed for I2C to GNSS
39-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
39+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
4040
SFE_UBLOX_GNSS myGNSS;
4141

4242
//Basic Connection settings to RTK2Go NTRIP Caster - See secrets for mount specific credentials

Diff for: examples/ZED-F9P/Example1_GetPositionAccuracy/Example1_GetPositionAccuracy.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <Wire.h> //Needed for I2C to GNSS
2525

26-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
26+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2727
SFE_UBLOX_GNSS myGNSS;
2828

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

Diff for: examples/ZED-F9P/Example2_ValConfigurationMethod/Example2_ValConfigurationMethod.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#include <Wire.h> //Needed for I2C to GNSS
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
long lastTime = 0; //Simple local timer. Limits amount if I2C traffic to u-blox module.

Diff for: examples/ZED-F9P/Example3_StartRTCMBase/Example3_StartRTCMBase.ino

+1-1
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
//#define USE_SERIAL1 // Uncomment this line to push the RTCM data to Serial1

Diff for: examples/ZED-F9P/Example4_BaseWithLCD/Example4_BaseWithLCD.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

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

34-
#include "SparkFun_Ublox_Arduino_Library.h" //Click here to get the library: http://librarymanager/All#SparkFun_u-blox_GNSS
34+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //Click here to get the library: http://librarymanager/All#SparkFun_u-blox_GNSS
3535
SFE_UBLOX_GNSS myGNSS;
3636

3737
#include <SerLCD.h> //Click here to get the library: http://librarymanager/All#SparkFun_SerLCD

Diff for: examples/ZED-F9P/Example5_RelativePositioningInformation/Example5_RelativePositioningInformation.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <Wire.h> //Needed for I2C to GNSS
2525

26-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
26+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2727
SFE_UBLOX_GNSS myGNSS;
2828

2929
//#define USE_SERIAL1 // Uncomment this line to push the RTCM data from Serial1 to the module via I2C

Diff for: examples/ZED-F9P/Example6_GetVal/Example6_GetVal.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include <Wire.h> //Needed for I2C to GNSS
2626

27-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
27+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2828
SFE_UBLOX_GNSS myGNSS;
2929

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

Diff for: examples/ZED-F9P/Example7_SetVal/Example7_SetVal.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#include <Wire.h> //Needed for I2C to GNSS
2626

27-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
27+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2828
SFE_UBLOX_GNSS myGNSS;
2929

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

Diff for: examples/ZED-F9P/Example8_GetSetPortSettings/Example8_GetSetPortSettings.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include <Wire.h> //Needed for I2C to GNSS
2525

26-
#include "SparkFun_Ublox_Arduino_Library.h" //http://librarymanager/All#SparkFun_u-blox_GNSS
26+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
2727
SFE_UBLOX_GNSS myGNSS;
2828

2929
void setup()

Diff for: examples/ZED-F9P/Example9_multiSetVal/Example9_multiSetVal.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

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

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

3131
void setup()

0 commit comments

Comments
 (0)