int Distance = 0;
long readUltrasonicDistance(int triggerPin, int echoPin)
{
pinMode(triggerPin, OUTPUT); // Clear the trigger
digitalWrite(triggerPin, LOW);
delayMicroseconds(2);
// Sets the trigger pin to HIGH state for 10 microseconds
digitalWrite(triggerPin, HIGH);
delayMicroseconds(10);
digitalWrite(triggerPin, LOW);
pinMode(echoPin, INPUT);
// Reads the echo pin, and returns the sound wave travel time in microseconds
return pulseIn(echoPin, HIGH);
}
void setup()
{
pinMode(8, OUTPUT);
}
void loop()
{
Distance = 0.01723 * readUltrasonicDistance(13, 12);
if (Distance < 70) {
digitalWrite(8, HIGH);
} else {
digitalWrite(8, LOW);
}
delay(500); // Wait for 500 millisecond(s)
}