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. It allows you to connect to the internet, send and receive SMS messages, and get location from the cellular network or GPS.
5
7
6
8
## Examples
7
9
*[examples/HTTPClient]() - Example of using this library together with [HttpClient]() to connect to a web server
8
10
*[examples/HTTPClient]() - Example of using this library together with [HttpClient]() that uses [BearSSL]() under the hood to create a secure connection to a web server
9
-
*[examples/SMSReceive]() - Example for the SMS sending and receiving functionality
10
-
*[examples/TimeAndLocation]() - Use GPS, or Cellular to aquire the location and time of the device.
11
+
*[examples/ReceiveSMS]() - Example for the SMS sending and receiving functionality
12
+
*[examples/TimeAndLocation]() - Use GPS, or Cellular to acquire the location and time of the device.
11
13
*[examples/ModemTerminal]() - A handy example for debugging and Testing AT commands
Copy file name to clipboardExpand all lines: docs/readme.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ These features enable precise tracking of device locations and ensure synchroniz
123
123
124
124
GPS Location is ideal for applications requiring high-precision location data, such as asset tracking or outdoor navigation solutions. This functionality relies on the Global Version of the modem, which is equipped with GPS capabilities.
125
125
126
-
To enable GPS Location you will need to call `enableGPS(bool assisted)`. Assisted GPS or A-GPS is an enchancement of GPS that uses the cellular network to get the location, it performs that much quicker than without assistence but depends on Cellular network coverage.
126
+
To enable GPS Location you will need to call `enableGPS(bool assisted)`. Assisted GPS or A-GPS is an enhancement of GPS that uses the cellular network to get the location, it performs that much quicker than without assistance but depends on Cellular network coverage.
127
127
128
128
### Cellular Location
129
129
**Method Overview:**`getCellularLocation(unsigned long timeout = 10000)` also provides location tracking but utilizes the cellular network. Similar to the GPS method, it's a blocking call with a specified timeout, returning latitude and longitude values through a Location structure. If the location is not obtained, the values default to 0.0.
0 commit comments