#include <HCSR04.h>
HCSR04 hc(48, 47);
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println(hc.dist());
delay(50);
}
#include <HCSR04.h>
HCSR04 hc(48, 47);
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println(hc.dist());
delay(50);
}