#include <avr/io.h>
#include "timer.h"
#include "lcd2.h"
#include "timer.h"
int main()
{
initTimer0();
initTimer1();
init_i2c(); // Initialize I2C
LCD_Init(); // Initialize LCD
delayMs(2000);
// Display message on the first row
LCD_Clear();
LCD_moveCursor(0, 0); // Move to row 0, column 0
LCD_WriteString("Hello, Row 0!");
// Wait a moment
delayMs(2000);
// Clear the screen
// Display message on the second row
LCD_moveCursor(1, 0); // Move to row 1, column 0
LCD_WriteString("Hello, Row 1!");
}