/*
**Task**
Interface LCD-I2C,OLED, MPU6050 and Thermistor with ESP32.
Display Thermistor Temperature on OLED and MPU6050 Values on LCD.
OLED Display Format : "Temp : 26 °C"
LCD 1st Row Display Format : "A - x:-0.25 y:2.5"
LCD 2nd Row Display Format : "A - Z:-0.25"
LCD 3rd Row Display Format : "R - x:-0.25 y:2.5"
LCD 4th Row Display Format : "R - z:2"
**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
}