int suhu = 51;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("akhmadbilly11");
}
void loop() {
if (suhu < 30 ) {Serial.println("adem");}
else if (suhu < 40 ) {Serial.println("normal");}
else if (suhu < 50 ) {Serial.println("panas");}
else {Serial.println("neroko bocor");}
// put your main code here, to run repeatedly:
// delay(10); // this speeds up the simulation
}