You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library provides a toolkit for interacting with the official Arduino 4G Modules ([EMEA](https://store.arduino.cc/products/4g-module-emea) and [Global Versions](https://store.arduino.cc/products/4g-module-global)).
7
-
It allows you to connect to the internet, send and receive SMS messages, and get location from the cellular network or GPS.
6
+
This library provides a toolkit for interacting with the official Arduino 4G Modules ([EMEA](https://store.arduino.cc/products/4g-module-emea) and [Global Versions](https://store.arduino.cc/products/4g-module-global)) on using the [Portenta Mid Carrier](https://store.arduino.cc/products/portenta-mid-carrier) and Portenta H7 or C33 boards. It allows you to connect to the internet, send and receive SMS messages, and get location from the cellular network or GPS.
7
+
8
+
9
+
> [!NOTE]
10
+
> GPS/GNSS functionality is only supported on the [Global Versions](https://store.arduino.cc/products/4g-module-global) version of the modem.
11
+
8
12
9
13
## Examples
10
14
*[DeleteSMS](examples/DeleteSMS) - Example that shows how to delete SMS.
11
-
*[GetLocation](examples/GetLocation) - Shows how to get the current GPS location.
12
-
*[GetTime](examples/GetTime) - Use GPS to acquire the time of the device.
15
+
*[GetLocation](examples/GetLocation) - Shows how to get the current GPS location. (Supported on the [Global Version](https://store.arduino.cc/products/4g-module-global))
16
+
*[GetTime](examples/GetTime) - Use GPS to acquire the time of the device. (Supported on the [Global Version](https://store.arduino.cc/products/4g-module-global))
13
17
*[HTTPClient](examples/HTTPClient) - Example of using this library together with [ArduinoHttpClient]() to connect to a web server
14
18
*[HTTPSClient](examples/HTTPSClient) - Example of using this library together with [ArduinoHttpClient]() that uses [BearSSL]() under the hood to create a secure connection to a web server
15
19
*[ModemTerminal](examples/ModemTerminal) - A handy example for debugging and Testing AT commands
@@ -19,7 +23,7 @@ It allows you to connect to the internet, send and receive SMS messages, and get
19
23
## ✨ Features
20
24
* Fast 4G connection to the internet
21
25
* Secure SSL connections with BearSSL
22
-
* Get location using GPS or GSM
26
+
* Get location using GPS or GSM
23
27
* Synchronise time with the cell provider
24
28
* Send and Receive SMS Messages
25
29
@@ -77,6 +81,15 @@ It allows you to connect to the internet, send and receive SMS messages, and get
77
81
14. Upload sketch to the Portenta board. Enjoy!
78
82
79
83
84
+
## Compatibility
85
+
* This library is designed to be used with the the official Arduino 4G Modules [EMEA](https://store.arduino.cc/products/4g-module-emea) and [Global Versions](https://store.arduino.cc/products/4g-module-global)
86
+
* GPS/GNSS functionality is only supported on the [Global Version](https://store.arduino.cc/products/4g-module-global)
87
+
* This library compiles on the [Portenta C33](https://store.arduino.cc/products/portenta-c33?), [Portenta H7](https://store.arduino.cc/products/portenta-h7), [H7 Lite](https://store.arduino.cc/products/portenta-h7-lite), and [H7 Lite Connected](https://store.arduino.cc/products/portenta-h7-lite-connected) used in conjunction with the [Portenta Mid Carrier](https://store.arduino.cc/products/portenta-mid-carrier). Any other configuration is not supported by this library.
88
+
* Even though these Modules are PCIE devices and would physically fit on the [Portenta Max Carrier](https://store.arduino.cc/products/portenta-max-carrier), we do not support this configuration with the Arduino_Cellular library. But the Portenta Max Carrier has a SARA-R412M-02B cellular modem already.
89
+
* None of the library examples compile with the Portenta X8. The X8 handles the cellular connectivity in the Yocto Linux layer.
90
+
80
91
## 📖 Documentation
81
92
82
93
For more information about this library please read the documentation [here](./docs).
0 commit comments