#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C Icd (0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Icd.init();
Icd.setCursor(0 ,0);
Icd.print("Temp: 27.70 C");
Icd.setCursor(11, 0);
Icd.print((char)223);
Icd.backlight();
Icd.setCursor(0, 1);
Icd.print("Humid: 47.00%");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}