RBE1001Lib
Ultrasonic.ino
Go to the documentation of this file.
1 #include <Arduino.h>
2 #include <RBE1001Lib.h>
3 
5 
6 /*
7  * This is the standard setup function that is called when the ESP32 is rebooted
8  * It is used to initialize anything that needs to be done once.
9  */
10 void setup()
11 {
12  // This will initialize the Serial as 115200 for prints
13  Serial.begin(115200);
14 
16 }
17 
18 
19 /*
20  * The main loop for the program. The loop function is repeatedly called
21  * once the ESP32 is started.
22  */
23 void loop()
24 {
25  delay(100);
26  float distance = ultrasonic.getDistanceCM();
27 
28  Serial.print(distance); Serial.println(" cm");
29 }
#define SIDE_ULTRASONIC_ECHO
Definition: RBE1001Lib.h:25
float getDistanceCM()
get the distance of an object from the sensor in centimeters
void loop()
Definition: Ultrasonic.ino:23
Rangefinder objects wrap a FreeRTOS thread with pin change interrupts to read trigger/echo style ultr...
Definition: Rangefinder.h:21
void attach(int trigger, int echo)
Attach 2 pins to be used as triger and echo.
Definition: Rangefinder.cpp:92
Rangefinder ultrasonic
Definition: Ultrasonic.ino:4
void setup()
Definition: Ultrasonic.ino:10
#define SIDE_ULTRASONIC_TRIG
Definition: RBE1001Lib.h:24