/**************************************************

 * File: lcd.h          Project by: David Hodgdon *

 * Class: ECE476        Instructor: Bruce Land    *         

 *************************************************/
#ifndef LCD_H
#define LCD_H

void LCDPrintString(char *str);		// also used on PC as indirection to printf

extern unsigned char lcd_buffer[128];			// Buffer for strings


#ifdef ATMEL
void InitLCD(void);                             // Initialize the LCD

void ClearLCD(void);				// Clear the LCD

void PrintBuffer(void);				// Print contents in LCD buffer string

void LCDNewLine();
void LCDBackspace();
#endif

#endif