int SensorSuhu =15;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
// Serial.println("Hello, ESP32!");
if (SensorSuhu<10){
Serial.println("Dingin Banget");
}
else if (SensorSuhu<20){
Serial.println("Dingin");
}
else if (SensorSuhu<35){
Serial.println("Normal");
}
else{
Serial.println("Panasse");
}
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}