ahhhhhhhhh
ahhhhhhhhh
void setup() {
// Start the serial communication
Serial.begin(9600);
// Set the pins
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
pinMode(ledPin1, OUTPUT);
pinMode(ledPin2, OUTPUT);
pinMode(ledPin3, OUTPUT);
void loop() {
// Clear the trigger
digitalWrite(trigPin, LOW);
delayMicroseconds(0);
}
}