Site icon Circuit Ideas for You

Arduino Bluetooth Appliance Controller Circuit

This project shows how to control a home appliance with Arduino and bluetooth module HC05 sends command from mobile.

Then relay switches the AC load like bulb or fan

Arduino Bluetooth Appliance Controller Circuit is simple and safe when wired correctly, also it is good for beginners who want home automation.

Arduino Code:

#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:

Arduino Bluetooth Appliance Controller Circuit Diagram

Parts List:

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

HC05 sends signals to Arduino and then Arduino reads TX signal and decides ON or OFF; after that, relay module gets 5 volt from Arduino.

Then relay works like a switch and phase wire from AC goes into relay and relay breaks or connects phase wire.

Now bulb turns ON when relay closes and bulb turns OFF when relay opens.

How To build:

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

Conclusion:

To conclude, this Arduino Bluetooth Appliance Controller Circuit is easy for beginners, as Arduino and Bluetooth give wireless control and relay lets us automate any AC appliance.

Also, this circuit is good base project for bigger smart home systems.

Exit mobile version