กลับไปหน้ารวมไฟล์
bluetooth-control-leds-e1ad46-en.md

You already know what we are gonna do today…so lets get started !

Things you’ll need :-

  • Arduino board
  • Breadboard
  • Bluetooth module/sensor – HC05
  • Couple of jumpers/single stranded wires
  • LEDs
  • An ANDROID(obviously 😛 )

Video tutorial down below↓

Connections Of Bluetooth module HC05 :-

VCC – to VCC of Arduino.
GND – to GND of Arduino.
RX – to digital pin 0(TX pin) of Arduino.
TX – to digital pin 1(RX pin) of Arduino. (connect RX & TX pin after uploading the code)

Of LED – Positive terminal – to pin 8 of Arduino.
Negative terminal – GND of Arduino.

Connections of bluetooth module HC05 with Arduino

Procedure :-

Download the app called BlueControl (It’s free). Here is the linkOpen the app Blue control (It will automatically turn on the device’s Bluetooth). Go to options. Click on “Connect to Robot”. Choose the device – HC 05.

  • Make the connections as shown in the above image. Don’t connect the RX & TX pins WHILE/BEFORE  uploading the code !
  • Copy the code given below.
  • When you are connecting to the Bluetooth module for the first time, it will ask you the password. Enter 0000 OR 1234.
  •  When the device gets successfully paired with the sensor, the LED lights on sensor will start blinking at a slower rate than usual.
  • DONE. Copy the code given below & test it out !

Code :-

Code for BLuetooth sensor HC-05:

void setup() {
Serial.begin(9600);
pinMode(8, OUTPUT); // put your setup code here, to run once:
}
 
void loop() {
  // put your main code here, to run repeatedly:
if(Serial.available()>0)
   {    
      char data= Serial.read(); // reading the data received from the bluetooth module
      switch(data)
      {
        case 'a': digitalWrite(8, HIGH);break; // when a is pressed on the app on your smart phone
        case 'd': digitalWrite(8, LOW);break; // when d is pressed on the app on your smart phone
        default : break;
      }
      Serial.println(data);
   }
   delay(50);
}

You may like it –

Control LEDs with Voice command (in 2 mins, just change code)

Here’s a video tutorial which will surely make your job easy… 🙂

You may like –

Make an Obstacle avoiding robot using Ultrasonic sensor (in 10 mins)

Comment below if you face any difficulties. I’ll solve them for you ASAP

Tutorialsandroid, Arduino, bluetooth module, code, connections, diy, how to, philips hue, program, sensor, smartphone, testing

EXPANDED TECHNICAL DETAILS

Bluetooth Low Energy (BLE) Interaction

This project focuses on the low-power pairing between modern smartphones and Arduino-controlled lighting.

  • BLE Service/Characteristic Architecture: (If using HM-10 or Nano 33 BLE) The Arduino advertises a custom Lighting Service. The phone updates a specific "Characteristic" to send new RGB values.
  • PWM Duty Cycle modulation: The Arduino converts the 0-255 brightness values received via Bluetooth into PWM signals, providing a smooth, dimmable ambient light experience.

App Integration

  • Custom UI: Demonstrates how to use apps like Blynk or LightBlue to create a personalized remote control for your room's LED environment.

ข้อมูล Frontmatter ดั้งเดิม

title: "BLUETOOTH CONTROL LEDs"
description: "This project uses android bluetooth for controlling LED"
author: "SURYATEJA"
category: ""
tags:
  - "lights"
  - "home automation"
views: 77820
likes: 9
price: 870
difficulty: "Easy"
components:
  - "1x Arduino UNO"
  - "1x Bluetooth Low Energy (BLE) Module (Generic)"
tools: []
apps:
  - "1x BlueMix"
downloadableFiles: []
documentationLinks: []
passwordHash: "fcb3b08258ee492e1d2d72ef3dad0839df71467326af516db2fb44d66bc3eef6"
encryptedPayload: "U2FsdGVkX1+zfAzyZWBGTPEb6hudeNgbzzVt7j9uPBvLzY77GccABO5LkXoTV2s1voU0J1r+laAZjmAT0cp/pQ=="
seoDescription: "Learn how to control LED using android bluetooth with Arduino. Simple and effective DIY electronics project guide."
videoLinks:
  - "https://www.youtube.com/embed/OhnxU8xALtg"
heroImage: "https://cdn.jsdelivr.net/gh/bigboxthailand/arduino-assets@main/images/projects/bluetooth-control-leds-e1ad46_cover.jpg"
lang: "en"