Skip to main content

Ultrasonic sensor in aurdino with code

                   Ultrasonic sensor in aurdino with code


Connection
       *vcc of ultrasonic sonsor to +5v
       *Gnd pin to Gnd pin of aurdino
       *trigpin to pin no 13
       *echopin to pin no 12
       *led 1 to pin no 7
       *led 2 to pin no 8
       *Gnd of led to gnd pin of aurdino
 
Circuit Diagram


Procedure
        *connect the circuit as shown in figure
        *copy and paste the code given below
        *upload the code
        *then check it
Code
/*
  connect ultrasonic sensor +vcc to 5v
  connect echopin to pin no 12
  connect trigpin to pin no 13
 */
#define trigPin 13
#define echoPin 12
#define led 7
#define led2 8

void setup() {
  Serial.begin (9600);
  pinMode(trigPin, OUTPUT);
  pinMode(echoPin, INPUT);
  pinMode(led, OUTPUT);
  pinMode(led2, OUTPUT);
}

void loop() {
  long duration, distance;
  digitalWrite(trigPin, LOW);
  delayMicroseconds(2);
  digitalWrite(trigPin, HIGH);
  delayMicroseconds(10);
  digitalWrite(trigPin, LOW);
  duration = pulseIn(echoPin, HIGH);
  distance = (duration/2) / 29.1;
  if (distance < 4) {
    digitalWrite(led,HIGH);
  digitalWrite(led2,LOW);
}
  else {
    digitalWrite(led,LOW);
    digitalWrite(led2,HIGH);
  }
  if (distance >= 200 || distance <= 0){
    Serial.println("Out of range");
  }
  else {
    Serial.print(distance);
    Serial.println(" cm");
  }
  delay(500);
}


Lets check how is it work;

    

Comments

  1. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

ARDUINO KEYPAD LOCK SECURITY SYSTEM WITH SERVO MOTOR

                    ARDUINO KEYPAD LOCK SECURITY SYSTEM WITH SERVO MOTOR ARDUINO:          Arduino is Basic system which is used for the controlling various system that does lots of work.The arduino develope in 2003,the arduino is basically a microcontroling unit the code return in the form 8 bit ,32 bit which is return in the language of C and C++`The RAM in arduino is SRAM. KEYPAD LOCK:                       A Keypad Lock is the microcontrolled Security System in which it can be controlled which is contolled by the keypad which is 4*4 matrix and we could be secured with that.Here is the simple project with that we can do the keypad security system. WIRING DIAGRAM: PROCEDURE:         ...

Creating Artificial Planet

Already our Earth is loosing the habitable tendency due to the deforestation, Climate changes, etc. These all causes our Earth as inhabitable planet, for life better we should move into another planet to move into another planet we could create our own planet. But, it is possible to build a planet as like Earth with Atmosphere, Air, Water, Moderate Temperature, Gravity, etc. Theoretically, it is said we could build a planet like Earth. We could build our own planet right in our solar system for constant temperature as we get in our planet “Earth”. We could probably use asteroids in our solar system to build our artificial planet, but we are having only lower amount of asteroids in our solar system so we cannot build a planet as we expected so we are going to use OORT CLOUD to build our Artificial Planet but problem with this OORT CLOUD is it is so far from our Earth, we haven’t still invented that fast vehicle to bring that materials here, so this case could not help us. We have ...

Nasa Spacecraft OSIRIS-REX arrives at ancient asteroid Bennu

What is OSIRIS-REX?            OSIRIS-REX is a man-made artificial satellite which was launched on 8 th September 2016 from Cape Canaveral Air force station. OSIRIS-REX is launched to take samples from the ancient asteroid Bennu and it is estimated to return Earth on 2023. What is Bennu Asteroid?             Bennu was discovered on 11 th September 1999 by Lincoln-Near Earth Asteroid research . The Bennu asteroid is 492 meter wide and it has a mass of 78 billion kilogram. Scientist estimated Bennu could pass closer to Earth than moon in 2135, which close distance of 250,000 miles. What is OSIRIS-REX Work?              The OSIRIS-REX is send to take samples from the Asteroid Bennu to help scientist understand how heat radiated from sun is gently steering Bennu on increasing menacing course through solar system. The OS...