TomaszJuszczuk
Results
1
issues of
TomaszJuszczuk
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"));...