// lcd sm training academy
// it has 16 columns and 2 rows
// totally there are 32 sections for the characters of the numbers to display
// There are lot of functions inside the liquid crystal library please goo check it out
#include <LiquidCrystal.h>
const int rs = 13, en = 12, d4 = 11, d5 = 10, d6 = 9, d7 = 8;
LiquidCrystal sm(rs, en, d4, d5, d6, d7);
void setup() {
// lcd.begin(no of columns, no of rows );
sm.begin(16, 2);
// set cursor location of the caractres where are we want to print
// setcursor(column no , row no)
sm.setCursor(0,0);
sm.print("Hello Mathesh")
}
void loop() {
}