shameermohamed
Published

How to Control an LED by Phone Call

This project is about how to control an LED through a Phone Call using GSM SIM 800 C Module.

IntermediateProtip1 hour787
How to Control an LED by Phone Call

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
GSM SIM 800 C Module
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Untitled file

C/C++
//Tech Trends Shameer
//Control LED by Phone Call

#include <SoftwareSerial.h>
#include "Adafruit_FONA.h"
 

#define FONA_RX            2
#define FONA_TX            3
#define FONA_RST           4
 
#define FONA_RI_INTERRUPT  0
int led = 13; 
String techtrends;
SoftwareSerial fonaSS = SoftwareSerial(FONA_TX, FONA_RX);
 
Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
 
void setup() {
  pinMode(led, OUTPUT);     
  Serial.begin(115200);
  Serial.println(F("FONA incoming call example"));
  Serial.println(F("Initializing....(May take 3 seconds)"));
  delay(3000);
  fonaSS.begin(4800); // if you're using software serial
  if (! fona.begin(fonaSS)) {           // can also try fona.begin(Serial1) 
    Serial.println(F("Couldn't find FONA"));
    while (1);
  }
  Serial.println(F("FONA is OK"));
 
  if(fona.callerIdNotification(true, FONA_RI_INTERRUPT)) {
    Serial.println(F("Caller id notification enabled."));
  }
  else {
    Serial.println(F("Caller id notification disabled"));
  }


// Code from Loop Start
if (! fona.begin(fonaSS)) {           // can also try fona.begin(Serial1) 
    Serial.print("GSM Kit Not Working");
     }
     else
  fona.callerIdNotification(true, FONA_RI_INTERRUPT);
  char phone[32] ={0};
   
  if(fona.incomingCallNumber(phone)){
   Serial.println(F("RING!"));
    Serial.print(F("Phone Number: "));
    techtrends=phone;
    
    Serial.print("Call From: ");
    Serial.println(techtrends);
    
    digitalWrite(led, HIGH);
    delay(30000);
    digitalWrite(led, LOW);
    if(fona.callerIdNotification(true, FONA_RI_INTERRUPT)) {
    Serial.println(F("Caller id notification enabled."));
    } 
    }
//Code From Loop End
  
}
 
void loop(){
     
  
  }

Credits

shameermohamed
2 projects • 6 followers
I m Shameer an oddball aquarius with love for all things simple &beautiful. I just keep it simple on this vlog with info about technology.
Contact

Comments

Please log in or sign up to comment.