This code makes things a little easier for SIM800C users. You can send SMS messages to phone numbers using the sms function provided in the code. You can use this code in your projects to fulfill your sms sending needs.
Add the number you want to send the sms to
String phone_no = "your number here"; //example format "+921234567890";
Add the message in the sendSMS function
sendSMS("Hello from CYBR node!", phone_no);
Enjoy!