Posts

Showing posts from November, 2020

LCD Display

Image
  SUBSCRIBE Material required-: Arduino Uno  Jumper wires LCD Display (16*2) 1k resistor Breadboard                                 This is a project in which you will learn how to control LCD display using Arduino .You just have to simply connect the LCD display (16*2) with Arduino Uno .I hope you will enjoy this ,If you want me to make a post on your idea /project just let me know in the comment section or mail me . HAPPY LEARNING!                                         Connections VSS    pin  to  GND VDD/VCC   pin to +5volt VO   pin through  1k resistor to  ground RS     pin to  Digital pin(12) RW    pin to  GND E       pin to    Digital pin(11)   D4     pin to...

Measuring_distance_using_HC-sro4

Image
 Material required-: Arduino Uno Jumpers HC-SRO4 (Ultrasonic sensor) This is a project in which u can make a distance measurement circuit using HC-SRO4 Ultrasonic sensor you simply have to connect the sensor with Arduino Uno board . You can view the output on serial monitor , make sure that you have selected the correct baud    otherwise it will not work .I hope you all will enjoy this .If you want me to make a post on your idea or project just let me know in the comment section .    VCC pin    to    5volt(5v).(Arduino board) TRIG pin      to        digital pin 4(Arduino board) ECHO pin     to        digital pin 5(Arduino board) GND pin     to    GND pin (Arduino board) ARDUINO CODE const int trigPin=4; const int echoPin=5; long duration; long distance; void setup() { Serial.begin(9600);  pinMode(trigPin,OUTPUT); pinMode(echoPin,INPUT);  ...

Fade in and fade out

Image
 Materials required-: Led Arduino 1k Resistor Jumpers Breadboard This is a simple circuit in which you can control the brightness of led with the help of code . you can also use a resistor less than 1k or may be for more good results don't use a resistor . I Hope you all will enjoy this .If you want me to make a post on your idea or project just let me know in the comment section.             HAPPY LEARNING!                                        ARDUINO CODE        int led = 9;           // the PWM pin the LED is attached to int brightness = 0;    // how bright the LED is int fadeAmount = 5;    // how many points to fade the LED by void setup() {   // declare pin 9 to be an output:   pinMode(led, OUTPUT); } void loop() {   // set the brightness of pin 9:   an...

Controlling led patterns with push button

Image
 Materials required-: Arduino Uno   led * 7 1k resistor (ohm)   * 7 Push button switch Jumpers Breadboard This is a simple circuit in which you can control 7 led patterns with a push button ,I have used  7 led's you can use more or less as per your choice  and also u can create some more patterns it's up to you whatever you want to  do u can twist this circuit  as per your desire.  HAPPY LEARNING! Arduino code int L1 = 13; int L2 = 12; int L3 = 11; int L4 = 10; int L5 = 9; int L6 = 8; int L7 = 7;  //7 LED pin int buttonPin = 6;  //the number of the pushbutton pin int de=50;  // delay time int p=0;    // variable for pattem int buttonState = 0;         // variable for reading the pushbutton status void setup() {      pinMode(L1, OUTPUT);   pinMode(L2, OUTPUT);   pinMode(L3, OUTPUT);   pinMode(L4, OUTPUT);   pinMode(L5, OUTPUT);   pinMode(L6, OUTPUT);...

Control a led with a button

Image
 Material required- :  Arduino Uno board jumpers Led 1k , 10k resistors(ohm) Push button switch Breadboard This is a simple Arduino Uno project basically for beginners ,It's a simple circuit which turns the led on when button is pressed and off when it's released , its fun to operate and  also  very exciting . HAPPY LEARNING! Fig-1 Circuit Diagram

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