项目作者: cybrnode

项目描述 :
Sending SMS from SIM800C/SIM800L using AT commands
高级语言: C++
项目地址: git://github.com/cybrnode/sms-sim800c.git
创建时间: 2020-01-21T11:38:13Z
项目社区:https://github.com/cybrnode/sms-sim800c

开源协议:MIT License

下载


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

  1. String phone_no = "your number here"; //example format "+921234567890";

Add the message in the sendSMS function

  1. sendSMS("Hello from CYBR node!", phone_no);

Enjoy!