Better support for Cellular XBEE3 modules

Also some minor documentation and naming changes for consistency.
This commit is contained in:
SRGDamia1
2018-05-16 12:54:57 -04:00
parent ffe4611f45
commit 2a08a828b1
10 changed files with 827 additions and 341 deletions

View File

@@ -35,20 +35,20 @@ TinyGSM also pulls data gently from the modem (whenever possible), so it can ope
## Features
Feature \ Modem | SIM8xx | Ublox | A6/A7/A20 | M590 | ESP8266 | XBee
Feature \ Modem | SIM8xx | u-Blox | A6/A7/A20 | M590 | ESP8266 | XBee
--- | --- | --- | --- | --- | --- | ---
**Data connections**
TCP (HTTP, MQTT, Blynk, ...) | ✔ | ✔ | ✔ | ✔ | ✔ | ✔
UDP | ◌ | ◌ | | | | ◌
SSL/TLS (HTTPS) | ✔¹ | ✔ | 🅧 | 🅧 | ✔¹ | ✔¹
**USSD**
Sending USSD requests | ✔ | | ✔ | ✔ | 🅧 |
Decoding 7,8,16-bit response | ✔ | | ✔ | ✔ | 🅧 |
Sending USSD requests | ✔ | | ✔ | ✔ | 🅧 |
Decoding 7,8,16-bit response | ✔ | | ✔ | ✔ | 🅧 |
**SMS**
Sending | ✔ | | ✔ | ✔ | 🅧 | ✔
Sending Unicode | ✔ | | ◌ | 🅧 | 🅧 |
Reading | | | | | 🅧 |
Incoming message event | | | | ? | 🅧 |
Sending | ✔ | | ✔ | ✔ | 🅧 | ✔
Sending Unicode | ✔ | | ◌ | 🅧 | 🅧 |
Reading | | | | | 🅧 |
Incoming message event | | | | ? | 🅧 |
**Calls**
Dial, hangup | ✔ | | ✔ | 🅧 | 🅧 | 🅧
Receiving calls | ✔ | | ✔ | 🅧 | 🅧 | 🅧
@@ -70,7 +70,7 @@ GPS/GNSS | ✔¹ | 🅧 | ◌¹ | 🅧 |
- ESP8266 (AT commands interface, similar to GSM modems)
- Digi XBee WiFi and Cellular (using XBee command mode)
- Neoway M590
- U-blox SARA U2 (U201, U260, U270)
- u-blox Cellular Modems (LEON-G100, LISA-U2xx, SARA-G3xx, SARA-U2xx, TOBY-L2xx, LARA-R2xx, MPCI-L2xx)
- Quectel BG96 ***(alpha)***
### Supported boards/modules
@@ -141,7 +141,7 @@ For additional functions, please refer to [this example sketch](examples/AllFunc
Use this sketch to diagnose your SIM card and GPRS connection:
File -> Examples -> TynyGSM -> tools -> [Diagnostics](https://github.com/vshymanskyy/TinyGSM/blob/master/tools/Diagnostics/Diagnostics.ino)
### Ensure stable data & power connection
Most modules require up to 2A and specific voltage - according to the module documentation.
@@ -158,7 +158,7 @@ Try selecting **57600**, **38400**, or even lower - the one that works best for
In some cases **9600** is unstable, but using **38400** helps, etc.
Be sure to set correct TX/RX pins in the sketch. Please note that not every Arduino pin can serve as TX or RX pin.
**Read more about SoftSerial options and configuration [here](https://www.pjrc.com/teensy/td_libs_AltSoftSerial.html) and [here](https://www.arduino.cc/en/Reference/SoftwareSerial).**
### ESP32 HardwareSerial
When using ESP32 `HardwareSerial`, you may need to specify additional parameters to the `.begin()` call.
@@ -180,7 +180,7 @@ This may result in problems such as:
* etc.
To return module to **Factory Defaults**, use this sketch:
File -> Examples -> TynyGSM -> tools -> [FactoryReset](https://github.com/vshymanskyy/TinyGSM/blob/master/tools/FactoryReset/FactoryReset.ino)
File -> Examples -> TinyGSM -> tools -> [FactoryReset](https://github.com/vshymanskyy/TinyGSM/blob/master/tools/FactoryReset/FactoryReset.ino)
### Goouuu Tech IOT-GA6 vs AI-Thinker A6 confusion