Home Automation System || Arduino project || College Project || KIT college
Автор: Rohit Gupta
Загружено: 2020-09-09
Просмотров: 251
Описание:
it was my college project .(In 2017)
In this project we have used Arduino uno R3 for controlling the whole process of this project. And a Bluetooth module is used for controlling the home appliances wirelessly.
GitHub - https://github.com/Rohitgta77/
Home appliances will turned ON and OFF when user will touch button in the Bluetooth mobile app in Android mobile phone. To run this project, first we need to download Bluetooth app form Google play store.
We can use any Bluetooth app that can send data using Bluetooth. Here are some apps name that can be used BUlB CONTROL ARUDNIO app.
After installing the App, you need to open it and then search Bluetooth device and select HC-05 Bluetooth device. And then configure keys.
Here in this project we have used BUlB CONTROL ARUDNIO app.
Code in Arduino IDE :-
char data = 0;
void setup()
{
Serial.begin(9600);
pinMode(13, OUTPUT);
}
void loop()
{
if(Serial.available() greater than 0)
{
data = Serial.read();
Serial.print(data);
if(data == '1')
digitalWrite(13, HIGH);
else if(data == '0')
digitalWrite(13, LOW);
}
}
Follow us on Instagram - / rohitgta77
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: