Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

callNumber() function issue #8

Open
TomaszJuszczuk opened this issue Sep 1, 2017 · 1 comment
Open

callNumber() function issue #8

TomaszJuszczuk opened this issue Sep 1, 2017 · 1 comment

Comments

@TomaszJuszczuk
Copy link

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 :)

@vittorioexp
Copy link
Owner

Thank you for the contribution. I have just corrected this function and drafted a new release (1.1.4).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants