We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8fcfc commit 98b8f24Copy full SHA for 98b8f24
Sim800L.cpp
@@ -106,7 +106,7 @@ void Sim800L::begin()
106
pinMode(RESET_PIN, OUTPUT);
107
108
_baud = DEFAULT_BAUD_RATE; // Default baud rate 9600
109
- this->begin(_baud);
+ this->SoftwareSerial::begin(_baud);
110
111
_sleepMode = 0;
112
_functionalityMode = 1;
@@ -122,7 +122,7 @@ void Sim800L::begin(uint32_t baud)
122
123
124
_baud = baud;
125
126
127
128
0 commit comments