#include <asf.h>
#include <stdint.h>
#include "Daisy24_lib.h"

int main( void)
{
	// Display init
	Daisy24_LCD_Init();
	delay_init();

	// Display clear
	Daisy24_LCD_Clear();
	
	// Set the cursor position to x=0,y=0 (top left) and write A
	Daisy24_LCD_SetCursor( 0, 0);
	Daisy24_LCD_WriteChar('A');
	
	// Set the cursor position to x=15,y=0 (top right) and write B
	Daisy24_LCD_SetCursor( 15, 0);
	Daisy24_LCD_WriteChar('B');

	// Set the cursor position to x=0,y=1 (bottom lefy) and write C
	Daisy24_LCD_SetCursor( 0, 1);
	Daisy24_LCD_WriteChar('C');

	// Set the cursor position to x=15,y=1 (bottom right) and write D
	Daisy24_LCD_SetCursor( 15, 1);
	Daisy24_LCD_WriteChar('D');

}
