Arduino code


#define trigPin 13

#define echoPin 12

#define led 7

#define buzzer 6

void setup()
{
pinMode(trigPin, OUTPUT);

pinMode(echoPin, INPUT);

pinMode(led, OUTPUT);

pinMode(buzzer,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 < 70)// This is where checking the distance you can change the value

{

digitalWrite(led,HIGH); // When the the distance below 70cm

digitalWrite(buzzer,HIGH);

} else

{

digitalWrite(led,LOW);// when greater than 100cm

digitalWrite(buzzer,LOW);

} delay(500);

}



Comments

Popular posts from this blog

How to make talking Voltmeter at home

How to make voltmeter using Arduino