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
In a function
void Sim800L::callNumber(char* number)
{
this->SoftwareSerial::print (F("ATD"));
this->SoftwareSerial::print (number);
this->SoftwareSerial::print (F("\r\n"));
}
in a line this->SoftwareSerial::print (F("\r\n")); should be a semicolon before \r\n.
it should be:
this->SoftwareSerial::print (F(";\r\n"));
Now it's really making a call :)
The text was updated successfully, but these errors were encountered:
In a function
void Sim800L::callNumber(char* number)
{
this->SoftwareSerial::print (F("ATD"));
this->SoftwareSerial::print (number);
this->SoftwareSerial::print (F("\r\n"));
}
in a line this->SoftwareSerial::print (F("\r\n")); should be a semicolon before \r\n.
it should be:
this->SoftwareSerial::print (F(";\r\n"));
Now it's really making a call :)
The text was updated successfully, but these errors were encountered: