/sms-sim800c

Sending SMS from SIM800C/SIM800L using AT commands

Primary LanguageC++MIT LicenseMIT

Sending SMS using SIM800C

Description

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.

Using sendSMS

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!