#include <Wire.h>
#include <RTClib.h>
#include <LiquidCrystal.h>
RTC_DS3231 rtc; // Create an instance of the DS3231 RTC library
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // Initialize the LCD
void setup() {
lcd.begin(16, 2); // Initialize the LCD with 16 columns and 2 rows
rtc.begin(); // Initialize the RTC module
}
}