├── .gitattributes ├── .github └── workflows │ ├── add_issue_to_project.yml │ └── compile-sketch.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── Utils ├── Multi_TCP_Echo.py └── Multi_UDP_Echo.py ├── examples ├── SARA-R5_Example10_SocketPingPong │ └── SARA-R5_Example10_SocketPingPong.ino ├── SARA-R5_Example10_SocketPingPong_BinaryTCP │ └── SARA-R5_Example10_SocketPingPong_BinaryTCP.ino ├── SARA-R5_Example10_SocketPingPong_MultipleTCP │ └── SARA-R5_Example10_SocketPingPong_MultipleTCP.ino ├── SARA-R5_Example10_SocketPingPong_MultipleUDP │ └── SARA-R5_Example10_SocketPingPong_MultipleUDP.ino ├── SARA-R5_Example11_Clock │ └── SARA-R5_Example11_Clock.ino ├── SARA-R5_Example12_AssistNowOnline │ ├── SARA-R5_AssistNow_Online.ino │ ├── SARA-R5_Example12_AssistNowOnline.ino │ └── secrets.h ├── SARA-R5_Example13_SetClockWithNTP │ ├── SARA-R5_Example13_SetClockWithNTP.ino │ └── SARA-R5_NTP.ino ├── SARA-R5_Example14_AssistNowOffline │ ├── SARA-R5_AssistNow_Offline.ino │ ├── SARA-R5_Example14_AssistNowOffline.ino │ ├── SARA-R5_NTP.ino │ └── secrets.h ├── SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks │ ├── GNSS_Callbacks.ino │ ├── SARA-R5_Callbacks.ino │ ├── SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks.ino │ ├── SARA-R5_NTRIP_Client.ino │ ├── Utils.ino │ └── secrets.h ├── SARA-R5_Example16_GNSS_NTRIP_Caster__Polling │ ├── SARA-R5_Example16_GNSS_NTRIP_Caster__Polling.ino │ ├── SARA-R5_NTRIP_Client.ino │ └── secrets.h ├── SARA-R5_Example17_ThingSpeak_MQTT │ └── SARA-R5_Example17_ThingSpeak_MQTT.ino ├── SARA-R5_Example1_GNSS_GPRMC │ └── SARA-R5_Example1_GNSS_GPRMC.ino ├── SARA-R5_Example2_Identification │ └── SARA-R5_Example2_Identification.ino ├── SARA-R5_Example2_Identification_ESPSoftwareSerial │ └── SARA-R5_Example2_Identification_ESPSoftwareSerial.ino ├── SARA-R5_Example3_NetworkInfo │ └── SARA-R5_Example3_NetworkInfo.ino ├── SARA-R5_Example4_RegisterOperator │ └── SARA-R5_Example4_RegisterOperator.ino ├── SARA-R5_Example5_ReceiveSMS │ └── SARA-R5_Example5_ReceiveSMS.ino ├── SARA-R5_Example6_SendSMS │ └── SARA-R5_Example6_SendSMS.ino ├── SARA-R5_Example7_ConfigurePacketSwitchedData │ └── SARA-R5_Example7_ConfigurePacketSwitchedData.ino ├── SARA-R5_Example8_Ping │ └── SARA-R5_Example8_Ping.ino └── SARA-R5_Example9_ThingSpeak │ └── SARA-R5_Example9_ThingSpeak.ino ├── img └── Contributing.JPG ├── keywords.txt ├── library.properties └── src ├── SparkFun_u-blox_SARA-R5_Arduino_Library.cpp └── SparkFun_u-blox_SARA-R5_Arduino_Library.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/add_issue_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/.github/workflows/add_issue_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/compile-sketch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/.github/workflows/compile-sketch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Multi_TCP_Echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/Utils/Multi_TCP_Echo.py -------------------------------------------------------------------------------- /Utils/Multi_UDP_Echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/Utils/Multi_UDP_Echo.py -------------------------------------------------------------------------------- /examples/SARA-R5_Example10_SocketPingPong/SARA-R5_Example10_SocketPingPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example10_SocketPingPong/SARA-R5_Example10_SocketPingPong.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example10_SocketPingPong_BinaryTCP/SARA-R5_Example10_SocketPingPong_BinaryTCP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example10_SocketPingPong_BinaryTCP/SARA-R5_Example10_SocketPingPong_BinaryTCP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example10_SocketPingPong_MultipleTCP/SARA-R5_Example10_SocketPingPong_MultipleTCP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example10_SocketPingPong_MultipleTCP/SARA-R5_Example10_SocketPingPong_MultipleTCP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example10_SocketPingPong_MultipleUDP/SARA-R5_Example10_SocketPingPong_MultipleUDP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example10_SocketPingPong_MultipleUDP/SARA-R5_Example10_SocketPingPong_MultipleUDP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example11_Clock/SARA-R5_Example11_Clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example11_Clock/SARA-R5_Example11_Clock.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example12_AssistNowOnline/SARA-R5_AssistNow_Online.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example12_AssistNowOnline/SARA-R5_AssistNow_Online.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example12_AssistNowOnline/SARA-R5_Example12_AssistNowOnline.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example12_AssistNowOnline/SARA-R5_Example12_AssistNowOnline.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example12_AssistNowOnline/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example12_AssistNowOnline/secrets.h -------------------------------------------------------------------------------- /examples/SARA-R5_Example13_SetClockWithNTP/SARA-R5_Example13_SetClockWithNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example13_SetClockWithNTP/SARA-R5_Example13_SetClockWithNTP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example13_SetClockWithNTP/SARA-R5_NTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example13_SetClockWithNTP/SARA-R5_NTP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_AssistNow_Offline.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_AssistNow_Offline.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_Example14_AssistNowOffline.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_Example14_AssistNowOffline.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_NTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example14_AssistNowOffline/SARA-R5_NTP.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example14_AssistNowOffline/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example14_AssistNowOffline/secrets.h -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/GNSS_Callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/GNSS_Callbacks.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_Callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_Callbacks.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_NTRIP_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/SARA-R5_NTRIP_Client.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/Utils.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/Utils.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example15_GNSS_NTRIP_Caster_With_Callbacks/secrets.h -------------------------------------------------------------------------------- /examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/SARA-R5_NTRIP_Client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/SARA-R5_NTRIP_Client.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example16_GNSS_NTRIP_Caster__Polling/secrets.h -------------------------------------------------------------------------------- /examples/SARA-R5_Example17_ThingSpeak_MQTT/SARA-R5_Example17_ThingSpeak_MQTT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example17_ThingSpeak_MQTT/SARA-R5_Example17_ThingSpeak_MQTT.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example1_GNSS_GPRMC/SARA-R5_Example1_GNSS_GPRMC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example1_GNSS_GPRMC/SARA-R5_Example1_GNSS_GPRMC.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example2_Identification/SARA-R5_Example2_Identification.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example2_Identification/SARA-R5_Example2_Identification.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example2_Identification_ESPSoftwareSerial/SARA-R5_Example2_Identification_ESPSoftwareSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example2_Identification_ESPSoftwareSerial/SARA-R5_Example2_Identification_ESPSoftwareSerial.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example3_NetworkInfo/SARA-R5_Example3_NetworkInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example3_NetworkInfo/SARA-R5_Example3_NetworkInfo.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example4_RegisterOperator/SARA-R5_Example4_RegisterOperator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example4_RegisterOperator/SARA-R5_Example4_RegisterOperator.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example5_ReceiveSMS/SARA-R5_Example5_ReceiveSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example5_ReceiveSMS/SARA-R5_Example5_ReceiveSMS.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example6_SendSMS/SARA-R5_Example6_SendSMS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example6_SendSMS/SARA-R5_Example6_SendSMS.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example7_ConfigurePacketSwitchedData/SARA-R5_Example7_ConfigurePacketSwitchedData.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example7_ConfigurePacketSwitchedData/SARA-R5_Example7_ConfigurePacketSwitchedData.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example8_Ping/SARA-R5_Example8_Ping.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example8_Ping/SARA-R5_Example8_Ping.ino -------------------------------------------------------------------------------- /examples/SARA-R5_Example9_ThingSpeak/SARA-R5_Example9_ThingSpeak.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/examples/SARA-R5_Example9_ThingSpeak/SARA-R5_Example9_ThingSpeak.ino -------------------------------------------------------------------------------- /img/Contributing.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/img/Contributing.JPG -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/SparkFun_u-blox_SARA-R5_Arduino_Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/src/SparkFun_u-blox_SARA-R5_Arduino_Library.cpp -------------------------------------------------------------------------------- /src/SparkFun_u-blox_SARA-R5_Arduino_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/SparkFun_u-blox_SARA-R5_Arduino_Library/HEAD/src/SparkFun_u-blox_SARA-R5_Arduino_Library.h --------------------------------------------------------------------------------