#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcdp = LiquidCrystal_I2C(0x27, 16, 2);
char ASCII_code;
void setup() {
// put your setup code here, to run once:
lcdp.init();
lcdp.backlight();
lcdp.setCursor(0, 0);
lcdp.print("TEST LCD");
delay(500);
lcdp.clear();
}
void loop() {
// put your main code here, to run repeatedly:
// for (uint16_t i = 31; i <= 243; i++) {
// ASCII_code = i;
// lcdp.setCursor(0, 0);
// lcdp.write(ASCII_code);
// delay(100);
// }
// for (uint8_t j = 0; j <= 255; j++) {
// analogWrite(11, j);
// lcdp.home();
// lcdp.print(j);
// delay(10);
// }
// lcdp.clear();
// for (uint8_t j = 255; j >= 0; j--) {
// analogWrite(11, j);
// lcdp.home();
// lcdp.print(j);
// delay(100);
// }
// lcdp.clear();
// while(1);
}