//
int Ultra = 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(2, OUTPUT);
}
void loop()
{
Ultra = 0.01723 * readUltrasonicDistance(1, 0);
if (Ultra < 100) {
digitalWrite(2, HIGH);
} else {
digitalWrite(2, LOW);
}
delay(10); // Delay a little bit to improve simulation performance
}