Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 508 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 508 Bytes

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!