EasyManua.ls Logo

Keyestudio ESP32 - 5. Test Result

Keyestudio ESP32
344 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
ESP32 Starter Kit
(continued from previous page)
lcd.print(value);
if (value < 1000) {
lcd.setCursor(14, 1);
lcd.print(" ");
}
if (value < 100) {
lcd.setCursor(13, 1);
lcd.print(" ");
}
if (value < 10) {
lcd.setCursor(12, 1);
lcd.print(" ");
}
}
5. Test Result
After connecting the wiring and uploading code, we can see the corresponding contents on LCD by pressing buttons.
OK button clears the sensor display.
8.5. Arduino Project 163

Table of Contents