Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 7cc36d7

Browse files
authored
Update README.md
1 parent 707a254 commit 7cc36d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Supported features:
1010
* HTTP and HTTPS (SSL)
1111
* GET and POST methods
1212
* SoftwareSerial and HardwareSerial links
13+
* Configurable debug serial
1314

1415
## To know before starting...
1516
* The [SIM800L](https://simcom.ee/modules/gsm-gprs/sim800/) is a GSM/GPRS module built by SIMCom.
@@ -41,13 +42,13 @@ To initiate with a SoftwareSerial link (on pin TX_PIN and RX_PIN):
4142
```
4243
SoftwareSerial* serial = new SoftwareSerial(TX_PIN, RX_PIN);
4344
serial->begin(9600);
44-
SIM800L* sim800l = new SIM800L((Stream *)serial, SIM800_RST_PIN, 512, false);
45+
SIM800L* sim800l = new SIM800L((Stream *)serial, SIM800_RST_PIN, 512);
4546
```
4647

4748
To initiate with a hardware serial link (Serial1):
4849
```
4950
Serial1.begin(9600);
50-
SIM800L* sim800l = new SIM800L((Stream *)&Serial1, SIM800_RST_PIN, 512, false);
51+
SIM800L* sim800l = new SIM800L((Stream *)&Serial1, SIM800_RST_PIN, 512);
5152
```
5253

5354
### Setup and check all aspects for the connectivity

0 commit comments

Comments
 (0)