Smartphone LED Controller Using Bluetooth With Own Application

Hello friends welcome back to “Techno-E-Solution” In this video I’ll be going to show you an interesting project “Smartphone controlled LED Using Arduino & Bluetooth with Own developed Application”, I developed this application on kodular app making platform. In this project, we control the LED using a smartphone, for the smartphone to Arduino communication I used HC- 05 Bluetooth module. We send commands to the Arduino through the Bluetooth module to control the LED. So let’s make this project without wasting any time…

Follow me on:-

YOUTUBE INSTAGRAM FACEBOOK INSTRUCTABLES DAILYMOTION HACKSTER |
If you like this project subscribe to us on Youtube, So without wasting time Let’s get started…………..

Step 1: MATERIAL REQUIRED

To make this project we need some components (Best Buy Links are Provided):-

  1. Arduino Nano
  2. HC-05 Bluetooth Module
  3. LED
  4. Resistor (470E)
  5. Jumper Wires
  6. Breadboard

[ Above link are affiliated if you buy from the above link, We got some bonus from it. ]

Step 2: CIRCUIT DIAGRAM

Follow the Above circuit diagram to make connection :-

Arduino — Bluetooth Module

5V >> VCC

GND >> GND

TX >> RX

RX >> TX

Arduino — LED

D3 >> Registor >> Anode

GND >> Cathode

Step 3: ARDUINO CODE

/*
 * Hello friends Here is the Arduio Code for Smartphone LED Controller
 * Upload the following code to your Arduino
 */

String readString;
#define LED 3    

void setup()
{
  Serial.begin(9600);             
  pinMode(LED, OUTPUT);      
 
}
void loop()
{
  while(Serial.available())  
  {
    delay(10);                 
    char c = Serial.read();    
    if (c == '#'){
      break;                   
    }
    readString += c;            
  }
    if (readString.length() >0)
    {
      Serial.println(readString);
                  
      if(readString == "0"){   
        digitalWrite(LED, LOW);
      }
      else if(readString == "1")
      {
        digitalWrite(LED, HIGH);
      }
      }

      readString="";
    }<br>

Step 4: NEXT PCB

NextPCB is a high-quality PCB Manufacturer. With professional PCB manufacturing capabilities, our PCB engineers with more than 10 years of experience will double-check your engineering files.

NextPCB is certified by IATF16949, ISO9001, ISO14001, UL, CQC, RoHS and REACH; more importantly, we handle the whole process including the PCB prototype, PCB manufacturing, PCB assembly, testing, and final shipment. We are capable of assembling BGA, Micro-BGA, QFN, and other leadless package parts. We also have an online parts shop, you can choose any parts you need.

If you want a Printed circuit board go through the NEXTPCBAdd Tip

Step 5: APPLICATION

I built this application on a kodular app-making platform. In this app, we simply add two buttons to control the LED using Bluetooth. I provide the app link, you just install the following app.

How to operate the application:-

  1. First power-up the circuit using a 5V DC supply
  2. Turn on mobile Bluetooth.
  3. Search for HC-05.
  4. Pair them with mobile, use password (1234) or (0000).
  5. Now open the application.
  6. Click on the Bluetooth button.
  7. Select HC-05, the Bluetooth will get connect to the mobile.
  8. At the top of the application, you can see the status of the connection, it may be Connected or Not Connected.
  9. Now using two buttons on-screen which are the Green & Red buttons to control the LED.

Application Download Link:- Click here

Step 6: DEMO & TESTING

Here is the detailed video on a project, We hope this video will be helpful to you. If you got this video helpful subscribe to our youtube channel.

Source: Smartphone LED Controller Using Bluetooth With Own Application


About The Author

Muhammad Bilal

I am a highly skilled and motivated individual with a Master's degree in Computer Science. I have extensive experience in technical writing and a deep understanding of SEO practices.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top