// #include <avr/io.h>
// #include <util/delay.h>
// #include <stdlib.h>
#include "lcd.h"
int main(void)
{
init_lcd();
//char positionstring[4];
send_string_location(0,0,"anish");
send_integer_location(6,0,69,2);
send_string_location(9,0,"ashwin");
while(1)
{
// for(int y=0;y<2;y++)
// {
// for(int i=0;i<16;i++)
// {
// itoa(i,positionstring,10);
// setcursor(7,0);
// send_string("X = ");
// send_string(positionstring);
// itoa(y,positionstring,10);
// setcursor(7,1);
// send_string("Y = ");
// send_string(positionstring);
// setcursor(i,y);
// send_string("x");
// _delay_ms(400);
// setcursor(i,y);
// send_string(" ");
// itoa(i,positionstring,10);
// setcursor(7,0);
// send_string(" ");
// itoa(y,positionstring,10);
// setcursor(7,1);
// send_string(" ");
// }
// }
}
return 0;
}