#include <LiquidCrystal.h>
// Pin definitions
const int rs = 12, en = 13, d4 = 26, d5 = 25, d6 = 33, d7 = 32;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
lcd.begin(16, 2); // Set the LCD dimensions
lcd.print("Hello, world!"); // Print text on the LCD display
}
void loop() {
}