A simple SMS library for GSM modules with unicode support
This library allows you to listen and receive SMS messages from a GSM module (e.g. from SIM800L)
- Unicode support
- Multipart SMS
- Alphanumeric number
- Sending messages
- SIM800L
- SIMCOM 800 series
- SIMCOM 900 series
* Unchecked boards will probably work. Please notify me if it works on your specific board
- Just add
vahidtvj/TinySMS
to yourlib_deps
list
- First Install TinyGSM and LinkedList libraries
- Download the Latest release from github
- Unzip and modify the Folder name to "TinySMS"
- Move the folder to your Library folder
This library works alongside TinyGSM
Please see the examples folder for use cases
Example setup for SIM800L module:
#include <Arduino.h>
#define TINY_GSM_MODEM_SIM800
#include <TinyGsmClient.h>
#include <TinySMS.h>
TinyGsm modem(Serial);
TinySMS modemSMS(modem);
void setup()
{
// TinyGsm config
TinyGsmAutoBaud(Serial);
modem.init();
// setup modem for sms
modemSMS.begin();
}