Hello,
I have been following the example project at https://learn.sparkfun.com/tutorials/ho … p-option-2
I have successfully completed the following tasks in the exercise
-
my antenna is fixed
-
collected my RXM-RAWX message using UCentre
-
converted the UBX file to RINEX
-
sent my RINEX file to CSRS-PPP Service
-
received my summary email
-
Entered the ECEF Coordinates into UBX - TMODE3. Can see RTCM Data flowing
-
went with option 2 - ESP32. Successfully completed both the Blinking Light, WIFI and Bluetooth exercises
-
Registered with RTK2GO. Have a mount name and password.
-
Trying to complete Arduino u-blox GNSS library - examples → ZED-F9P → Example14_NTRIPServer
This is where I am hung up. I copied the code from the example 14. Have uploaded my wifi and mountpt information.
When I load it into the ESP it is coming back with the following error and the scripts won’t upload.
ESP32_RTK_BASE_STATION_WIFI:46:10: fatal error: SparkFun_u-blox_GNSS_Arduino_Library.h: No such file or directory
Multiple libraries were found for “WiFi.h”
compilation terminated.
Below is the first few lines of script (actual login names and passwords removed). Do you have any ideas how to get past this?
#include <WiFi.h>
// WiFi network name and password:
const char *ssid = “SSID”;
const char *password = “Password”;
WiFiClient ntripCaster;
#include <Wire.h>
const char casterHost = “rtk2go.com”;
const uint16_t casterPort = 2101;
const char mountPoint = “MNT Name”; //The mount point you want to push data to
const char mountPointPW = “MT password”;
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
SFE_UBLOX_GNSS myGNSS;
//Global Variables