#include <Arduino.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.begin(16, 2);
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("DO AM:");
lcd.setCursor(8,0);
lcd.print("40.00");
lcd.setCursor(13,0);
lcd.print("%");
lcd.setCursor(0, 1);
lcd.print("24.00");
lcd.setCursor(5, 1);
lcd.print("*C");
lcd.setCursor(9, 1);
lcd.print("87.00");
lcd.setCursor(14, 1);
lcd.print("*F");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}