RBE1001Lib
LineTrackerTest.ino
Go to the documentation of this file.
1 #include <Arduino.h>
2 #include <RBE1001Lib.h>
3 
4 
5 /*
6  * This is the standard setup function that is called when the ESP32 is rebooted
7  * It is used to initialize anything that needs to be done once.
8  */
9 void setup() {
10  // This will initialize the Serial as 115200 for prints
11  Serial.begin(115200);
12 
13 
14 }
15 
16 
17 /*
18  * The main loop for the program. The loop function is repeatedly called
19  * once the ESP32 is started.
20  */
21 void loop() {
22  delay(20);
23 
24  }
25 
void loop()
void setup()