Git Product home page Git Product logo

lib-sim800l-sms's Introduction

lib-sim800l-sms (WIP)

Simple and robust C++ library to handle SIM800L chip for sending and receiving SMS

flawfinder CodeQL

Supported Features

  • Receiving SMS (polling approach with callbacks, non-blocking)
  • Sending SMS
  • Check GSM network connection
  • Software reset for the SIM module

Considerations

  • SMS text content is automatically converted to lowercase and normalized

Known issues

  • Some SMS text scanning methods are actually pretty inefficient

Example code

#include <Arduino.h>

#include <SoftwareSerial.h>
#include <SIM800L.h>

SoftwareSerial	simSerial(5,6); // (RX , TX)
SIM800L sim;

void messageCallback(SMSMessage& sms);

void setup()
{
	Serial.begin(115200);
	Serial.println("SIM800L TEST");

	sim.begin(&simSerial);

	Serial.print("Time to start: ");
	Serial.print((float)( millis() / 1000.0f ), 1);
	Serial.println(" s");

	sim.onMessage(messageCallback);

	sim.onConnectionStateChanged([](bool connected){
		Serial.print(F("@ SIM: Connection status: "));
		Serial.println(connected);
	});
}

void loop()
{
	sim.run();
}

void messageCallback(SMSMessage& sms)
{
	sms.print();

	if( sms.search("info") )
	{
		const char str[] = "SOME INFO";
		strcpy(sms.message, str);
		sms.size = strlen(str);

		sim.sendMessage(sms);
	}
}

Work In Progress...

Contact and Feedback

Gmail: [email protected]

lib-sim800l-sms's People

Contributors

rafdal avatar mschaf avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.