vittorioexp/Sim800L-Arduino-Library-revised

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The SIM800L Arduino Library is a simple and easy-to-use library for the SIM800L module, allowing for quick and efficient communication with the module using the Arduino platform.

  • Simplifies the initialization and configuration of the SIM800L module
  • Provides a set of easy-to-use functions for sending and receiving SMS messages
  • Supports making and receiving phone calls
  • Includes example sketches to demonstrate the library's capabilities

You can install the Sim800L Arduino Library in the Arduino IDE by going to Sketch > Include Library > Manage Libraries, searching for "Sim800L" and clicking on the "install" button. Alternatively, you can download the library files from the repository and install it by going to Sketch > Include Library > Add .ZIP Library and selecting the downloaded files.

To use the library, simply include the library in your sketch and create an instance of the SIM800L class. The library provides a set of functions for sending and receiving SMS messages, making and receiving phone calls, and more.

For example, to send an SMS message, you can use the following code:

#include <Sim800L.h>

Sim800L Sim800L(10, 11);   // RX_PIN and TX_PIN

void setup(){
	Sim800L.begin(4800); 			
	Sim800L.sendSms("+1234567890","Hello world!");
}

void loop(){
	//do nothing
}

This is an open-source project and I'm currently looking for more collaborators to help grow and improve it. If you're interested, feel free to submit your pull request to the repository.

Before you can use the Sim800L Arduino Library, you need to physically connect the SIM800L module to your Arduino board.

  1. Connect the SIM800L's GND pin to the GND pin on the Arduino board
  2. Connect the SIM800L's VCC pin to the 3.3V pin on the Arduino board
  3. Connect the SIM800L's RX pin to the TX pin on the Arduino board (default is pin 11)
  4. Connect the SIM800L's TX pin to the RX pin on the Arduino board (default is pin 10)
  5. Connect the SIM800L's RST pin to the RESET pin on the Arduino board (default is pin 2)

It is important to note that the SIM800L module requires a stable power supply of at least 2A, it is strongly recommended to use an external power supply to power the SIM800L module. The SIM800L's VCC pin should be connected to the 3.3V pin on the Arduino board. Connecting it to the 5V pin may damage the module as it operates on 3.3V voltage level. It is important to ensure the voltage level is compatible with the module's specifications to avoid any damage.

Here is a list of functions that can be called on an instance of the SIM800L class:

NameReturnNotes
begin()NoneInitialize the module with a defalt baud rate
begin(number)NoneInitialize the module with a custom baud rate
reset()NoneReset the module, and wait to Sms Ready.
setSleepMode(bool)boolenable or disable sleep mode. If it returns true, there is an error.
getSleepMode()boolreturn sleep mode status. If it returns true, there is an error.
setFunctionalityMode(number)boolset functionality mode. If it returns true, there is an error.
getFunctionalityMode()boolreturn functionality mode status. If it returns true, there is an error.
setPIN(String)boolenable user to set a pin code. If it returns true, there is an error.
getProductInfo()Stringreturn product identification information
getOperatorsList()Stringreturn the list of operators
getOperator()Stringreturn the currently selected operator
calculateLocation()boolcalculate gsm position. If it returns true, there is an error.
getLocationCode()Stringreturn the location code
getLongitude()Stringreturn longitude
getLatitude()Stringreturn latitude
sendSms(number,text)boolboth parameters must be Strings. If it returns true, there is an error.
readSms(index)Stringindex is the position of the sms in the prefered memory storage
getNumberSms(index)Stringreturns the number of the sms.
delAllSms()boolDelete all sms. If it returns true, there is an error.
signalQuality()Stringreturn info about signal quality
answerCall()boolIf it returns true, there is an error.
callNumber(number)None
hangoffCall()boolIf it returns true, there is an error.
getCallStatus()uint8_tReturn the call status, 0=ready,2=Unknown(),3=Ringing,4=Call in progress
setPhoneFunctionality()NoneSet at to full functionality
activateBearerProfile()None
deactivateBearerProfile()None
RTCtime(int *day,int *month, int *year,int *hour,int *minute, int *second)NoneParameters must be reference ex: &day
dateNet()StringReturn date time GSM
updateRtc(utc)boolReturn if the rtc was update with date time GSM.

The Sim800L Arduino Library revised by Vittorio Esposito is open-source software and is licensed under the GPL-3.0 license.

Original version of the library by: [Cristian Steib] (https://.com/cristiansteib)

About

The SIM800L Arduino Library is a simple and easy-to-use library for the SIM800L module, allowing for quick and efficient communication with the module using the Arduino platform.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages