Posts

Showing posts from December, 2020

Interfacing "Bluetooth Module" with Arduino Uno

Image
  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_...

5 Channel Relay Module

Image
  Materials required-: PCB Board 5V Relays( as per your choice ) Resistor (220 ohm , 1k)  Led  (equal to number of relays used) Transistor (BC547) 3 Pin Screw terminal Male header pins or Female header pins Diode (IN4007)   Subscribe How it works  ? First of all, before knowing that how relay module works you have to know that how relay works A relay is the device that open or closes the contacts to cause the operation of the other electric control Every electromechanical relay consists of  Electromagnet Mechanically movable contact Switching points and  Spring   We can control high voltages device using relays .A Relay is actually a switch which is electrically operated by an electromagnet . The electromagnet can be  activated with a low voltage , for example we can say that using a 5volts from a microcontroller and it pulls a contact to make or break a high voltage circuit. As an example for this electronics project ,I am using...

Interfacing "RGB Led" with Arduino Uno

Image
  Materials Required-: 1- Arduino Uno  2-Bread Board 3-Jumper wires 4-RGB Led 5-220 ohm resistor In this project I have used 4 RGB Led .Connection is very simple as shown below . You can use Led as per your choice, but u have to connect Led in parallel .If you have any doubts or you want me to make a project based on your idea , just let me know in the comment section or you can contact me through email. HAPPY LEARNING! Circuit Diagram-: subscribe Arduino Code-: int redPin = 13; int greenPin = 12; int bluePin = 11; void setup() { pinMode(redPin,OUTPUT); pinMode(greenPin,OUTPUT); pinMode(bluePin,OUTPUT); } void loop() {   setColor(255,0,0); // red   delay(1000);   setColor(0,255,0);   //green    delay(1000);   setColor(0,0,255);   //bluecolor   delay(1000);   setColor(255,255,255);    //white color   delay(1000);   setColor(170,0,255);   //purple color   delay(1000);    } ...

Led's Proceeding pattern

Image
  Material required-: Arduino Uno Breadboard jumper wires 4*Led  (used in this project) 4*220 ohm resistor  ( according to the led used) This is a very simple project in which I have used four led to make a proceeding pattern. when you  will look at  this, It looks like that they are passing their power to the next led . You can use led as per your convenience . I know, I am currently not making big projects. It's because I don't have enough materials. But I assure you, that I will definitely make a big project sooner.  If you have any doubts or you want me to make a project based on your idea,  ask me in the comment section or you can contact me from "contact us" page .I hope these projects  will help you in learning "Arduino" . HAPPY LEARNING! Circuit Diagram-: SUBSCRIBE Arduino Code-: int L1=13; int L2=12; int L3=11; int L4=10; void setup() { pinMode(L1,OUTPUT); pinMode(L2,OUTPUT); pinMode(L3,OUTPUT); pinMode(L4,OUTPUT); } void loop() {   ...

Object detection device

Image
  Materials required-: Arduino Uno Breadboard Jumper wires HC-SRO4 ultrasonic sensor LED or a Buzzer(as per your choice ) 1k resistor How It Works?  Hello  ,   In this project I'm gonna show you ,how you can make a object detector  using HC-SRO4 sensor .  The Ultrasonic Sensor works on the principle of 'echolocation'. The waves are generated from the transducer(Sensor trig pin ) using the Arduino and then reflect back after striking an object and then received by   receiver( Sensor Echo pin). The Ultrasonic sensor can detect up to 4m . Now, we have to set the limited distance at which we want  Digital Pin(13,12,11,10,......)  to go high   and we use this in giving digital(1,0) signal to a "LED" or " BUZZER" . How To Connect? Connection is very simple ,First of all you have to connect the sensor to Arduino . i.e-: VCC      pin to   +5volts TRIG    pin to    DigitalPin(11) ECHO  ...

Measuring Distance and displaying it on LCD

Image
SUBSCRIBE How it works? Hello, This project is basically, based  on displaying the distance on a LCD display with the help of  an  HC-SRO4 ultrasonic sensor . The HC-SRO4 Ultrasonic distance sensor consist of two Ultrasonic transducers . In which one acts as a Transmitter and other as a Receiver . Transmitter converts electrical signals into 40KHz ultrasonic sound pulses. the receiver listens for the transmitted pulse (when bounces back) .If it receives them it produces an output pulse whose width can be used to determine the distance the pulse travelled . This sensor offers an excellent range of 2 to 400cm with an accuracy of 3mm . and luckily it operates on 5 volts , so we can directly hooked to an Arduino Uno or any other 5V logic microcontrollers.   How to connect? Hello, In this project I am going to show you how to connect the HC-SRO4 with  an "Arduino Uno" and print the distance on LCD display(16*2) First of all connect the LCD display with Arduino U...

Popular posts from this blog

Automatic Water Pumping System

Wireless Communication Between Two Arduino Board Using HC-05 Module

Interfacing "Bluetooth Module" with Arduino Uno