Interfacing "Bluetooth Module" with Arduino Uno
Materials required-: Arduino Uno Board Bluetooth Module (JDY-30) Breadboard Led (as per your choice) jumpers Resistors (220 ohm ) Hey guys, This is our 10th project using "Arduino Uno" in this project I'm gonna show you how you can connect to a Bluetooth module and operate led . This is the similar concept used in "Home Automation" projects in upcoming posts I will show you how you can make your own Home automation system. If you guys have any doubts you can contact me through email or contact us form in menu. If you want me to make a project based on your ideas just let me know in the comment section. HAPPY LEARNING! SUBSCRIBE Arduino Code-: int Roof_light=13; int Left_Fan=12; int left_Light=11; int Night_Bulb=10; int Right_light=9; int Right_Fan=8; void setup() { Serial.begin(9600); pinMode (Roof_light, OUTPUT); pinMode (Left_Fan, OUTPUT); pinMode (left_Light, OUTPUT); pinMode (Night_Bulb, OUTPUT); pinMode (Right_...