Light led using sim800l

Hi
I am using a arduino uno and a sim800l gsm module.
The GSM is able to receive SMS's using the code below, but I am struggling to save the messages received as a char to then compare it to a const char with a if statement which lights an LED.
In short: I want to SMS "led_on" from my phone and the onboard led should light up on that specific command.
I would appreciate any help.
Here is the code to receive SMS's:

#include <SoftwareSerial.h>

//Create software serial object to communicate with SIM800L
SoftwareSerial mySerial(3, 2); //SIM800L Tx & Rx is connected to Arduino #3 & #2

void setup()
{
//Begin serial communication with Arduino and Arduino IDE (Serial Monitor)
Serial.begin(9600);

//Begin serial communication with Arduino and SIM800L
mySerial.begin(9600);

Serial.println("Initializing...");
delay(1000);

mySerial.println("AT"); //Once the handshake test is successful, it will back to OK
updateSerial();

mySerial.println("AT+CMGF=1"); // Configuring TEXT mode
updateSerial();
mySerial.println("AT+CNMI=1,2,0,0,0"); // Decides how newly arrived SMS messages should be handled
updateSerial();
}

void loop()
{
updateSerial();
}

void updateSerial()
{
delay(500);
while (Serial.available())
{
mySerial.write(Serial.read());//Forward what Serial received to Software Serial Port
}
while(mySerial.available())
{
Serial.write(mySerial.read());//Forward what Software Serial received to Serial Port
}
}

Read the first topics telling how to attache code, among others.
First use the "Autoformat" function ion the IDE, also Ctrl+T. Copy that, click the code tag her and paste.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.