Site icon Circuit Ideas for You

Arduino Bluetooth Appliance Controller Circuit

This project shows how to control a home appliance with Arduino.

Bluetooth module HC05 sends command from mobile.

Relay switches the AC load like bulb or fan.

Arduino Bluetooth Appliance Controller Circuit is simple and safe when wired correctly.

Good for beginners who want home automation.

Arduino Coding:

#include <SoftwareSerial.h>
SoftwareSerial BT(10, 11);

int relay = 7;

void setup() {
pinMode(relay, OUTPUT);
digitalWrite(relay, LOW);
BT.begin(9600);
}

void loop() {
if (BT.available()) {
char c = BT.read();
if (c == '1') {
digitalWrite(relay, HIGH);
}
if (c == '0') {
digitalWrite(relay, LOW);
}
}
}

Code Explanation:

Circuit Working:

Parts List:

ItemQuantity
Arduino UNO1
HC-05 Bluetooth Module1
Relay Module 5V1
Bulb 220V1
Mobile Phone1
220V AC Supply1
USB Cable1

HC05 sends signals to Arduino.

Arduino reads TX signal and decides ON or OFF.

Relay module gets 5 volt from Arduino.

Relay works like a switch.

Phase wire from AC goes into relay.

Relay breaks or connects phase wire.

Bulb turns ON when relay closes.

Bulb turns OFF when relay opens.

How To build:

To build a Arduino Bluetooth Appliance Controller Circuit follow the below steps for connection:

Conclusion:

This Arduino Bluetooth Appliance Controller Circuit is easy for beginners.

Arduino and Bluetooth give wireless control.

Relay lets us automate any AC appliance.

Good base project for bigger smart home systems.

References:

Creating a bluetooth controller

Exit mobile version