/*
**Task**
Interface LCD-I2C, DHT22 and HC-SR04 with ESP32.
Display Temperature, Humidity and Distance on LCD Display.
**Rules**
Learn and try to solve task.
Time: Max 2hrs
Google is Allowed.
Any type of AI is not allowed.
Using AI will lead in rejection of your application.
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}