Disini saya akan memberikan Contoh Sketch Sederhana untuk Mengontrol LED/Relay melaui SMS yang dikirim dari ponsel anda ke Module SIM800L yang terpasang pada Arduino.
Cara Kerjanya adalah :
1.SIM800L kita setting program Auto Reading incoming SMS
2.Kemudian content SMS yang terbaca akan di-Index dan dicari kecocokan dengan settingan pada program yang kita buat.
3.Jika ada kecocokan Content SMS dari hasil Index maka akan Memenuhi syarat Fungsi if untuk menjalankan program.
Contoh sketch program kendari 2 LED via SMS SIM800L menggunakan library GSM Seeeduino
Wiring SIM800L <--> Arduino Uno
RXD <--> D8
TXD <--> D7
VCC <--> 3.7V melalui stepdown dari 5V Arduino
GND <--> GND
LED Merah (+) ==> D5
LED Biru (+) ==> D6
LED Merah & Biru (-) ==> GND
Code Program :
#include <gprs.h>
#include <softwareserial.h>
#define TIMEOUT 5000
#define LED_PIN 13
#define ON 1
#define OFF 0
const int MERAH = 5;
const int BIRU = 6;
int StatusMerah;
int StatusBIRU;
GPRS gprs;
void setup() {
pinMode (MERAH , OUTPUT);
pinMode (BIRU , OUTPUT);
Serial.begin(9600);
while(!Serial);
Serial.println("Starting SIM800 Auto Read SMS");
gprs.preInit();
delay(1000);
while(0 != gprs.init()) {
delay(1000);
Serial.print("init error\r\n");
}
//Set SMS mode to ASCII
if(0 != gprs.sendCmdAndWaitForResp("AT+CMGF=1\r\n", "OK", TIMEOUT)) {
ERROR("ERROR:CNMI");
return;
}
//Start listening to New SMS Message Indications
if(0 != gprs.sendCmdAndWaitForResp("AT+CNMI=1,2,0,0,0\r\n", "OK", TIMEOUT)) {
ERROR("ERROR:CNMI");
return;
}
Serial.println("Init success");
}
//Variable to hold last line of serial output from SIM800
char currentLine[500] = "";
int currentLineIndex = 0;
//Boolean to be set to true if message notificaion was found and next
//line of serial output is the actual SMS message content
bool nextLineIsMessage = false;
void loop() {
//Write current status to LED pin
digitalWrite(MERAH, StatusMerah);
digitalWrite(BIRU, StatusBIRU);
//If there is serial output from SIM800
if(gprs.serialSIM800.available()){
char lastCharRead = gprs.serialSIM800.read();
//Read each character from serial output until \r or \n is reached (which denotes end of line)
if(lastCharRead == '\r' || lastCharRead == '\n'){
String lastLine = String(currentLine);
//If last line read +CMT, New SMS Message Indications was received.
//Hence, next line is the message content.
if(lastLine.startsWith("+CMT:")){
Serial.println(lastLine);
nextLineIsMessage = true;
} else if (lastLine.length() > 0) {
if(nextLineIsMessage) {
Serial.println(lastLine);
// ########## MEMBACA KONTEN SMS DAN MENCARI+MENGARTIKAN KONTEN SMS KE PROGRAM #########
//Kendali LED MERAH
if(lastLine.indexOf("MERAH ON") >= 0){
StatusMerah = 1;
Serial.println("LED MERAH DINYALAKAN");}
else if(lastLine.indexOf("MERAH OFF") >= 0) {
StatusMerah = 0;
Serial.println("LED MERAH DIMATIKAN");}
//Kendali LED BIRU
if(lastLine.indexOf("BIRU ON") >= 0){
StatusBIRU = 1;
Serial.println("LED BIRU DINYALAKAN");}
else if(lastLine.indexOf("BIRU OFF") >= 0) {
StatusBIRU = 0;
Serial.println("LED BIRU DIMATIKAN");}
nextLineIsMessage = false;
}
}
//Clear char array for next line of read
for( int i = 0; i < sizeof(currentLine); ++i ) {
currentLine[i] = (char)0;
}
currentLineIndex = 0;
} else {
currentLine[currentLineIndex++] = lastCharRead;
}
}
}
Setelah Wiring OK dan Sketch Program Selesai di Upload coba kirim SMS dengan Format :
MERAH ON
Maka LED Merah akan menyala
MERAH OFF
Maka LED Merah akan mati
BIRU ON
Maka LED Biru akan menyala
BIRUOFF
Maka LED Biru akan mati
MERAH ON BIRU ON
Maka Kedua LED akan menyala
MERAH OFF BIRU OFF
Maka Kedua LED akan mati
Tampilan pada Serial Monitor Arduino
Apabila ingin Menambahkan Fungsi SMS Balasan ke Nomor Pengirim Tambahkan Syntax Void Send SMS
gprs.sendSMS("089666699999","LED MERAH DINYALAKAN");
Void/syntax Send SMS diletakan menggantikan Serial.print atau setelah Serial.print
Jika kalian ingin mengganti LED dengan Relay Module Arduino (low -active)
Cukup merubah definisi ON dan OFF
//Control LED
#define ON 1
#define OFF 0
//Control Relay
#define ON 0
#define OFF 1
Sumber dari :http://www.belajarduino.com/
Baca Juga Artikel lainnya : Cara UPload Program Arduino Via Android Menggunakan Bluino Loader Dari Code Politan
0 Response to "Cara Menggunakan SMS Untuk Control LED / Relay via Module SIM800L (Learn Arduino Controller + Source Code)"
Post a Comment