#include <Wire.h>
#include <LiquidCrystal.h>
// Initialize the LCD with the number of columns and rows
// (RS, E, D4, D5, D6, D7)
LiquidCrystal lcd(15, 2, 4, 5, 18, 19);
void setup() {
// Set up the LCD's number of columns and rows
lcd.begin(16, 2); // Adjust as needed (16 columns, 2 rows)
// Print a message to the LCD
lcd.print("student counter");
}
void loop() {
// Nothing to do here
}