#include<LiquidCrystal_I2C>
const int col = 16;
const int row = 2;
LiquidCrystal_I2C lcd=LiquidCrystal_I2C(0x27,col, row);
void setup(){
Serial.begin(115200);
lcd.init();
lcd.backlight();
lcd.setCursor(4, 0);
lcd.print("Jurusan");
}
void loop(){
}