Если вы хотите отследить расстояние, вы можете выполнить этот процесс, чтобы проверить, что у вашего датчика нет проблем (я предполагаю, что проводка правильная):
// defines pins numbers
const int triggerPin = 7;
const int echoPin = 6;
// defines variables
long duration;
int distance;
void setup() {
pinMode(triggerPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
Serial.begin(115200); // Starts the serial communication
}
void loop() {
delay(50);
// Clears the triggerPin
digitalWrite(triggerPin, LOW);
delayMicroseconds(2);
// Sets the triggerPin on HIGH state for 10 micro seconds
digitalWrite(triggerPin, HIGH);
delayMicroseconds(10);
digitalWrite(triggerPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
}
Для генерации ультразвука вам необходимо установитьТриггер в высоком состоянии в течение 10 мксЭто отправит звуковой импульс с 8 циклами, который будет двигаться со скоростью звука, и он будет получен в выводе Echo.Вывод Echo будет выводить время в микросекундах, пройденное звуковой волной.
скорость звука составляет 340 м / с или 0,034 см / мкс, поэтому вы делите на 2, чтобы поймать расстояние