1 //*****************************************************************************
\r
3 // File........: LCD_functions.h
\r
5 // Author(s)...: ATMEL Norway
\r
7 // Target(s)...: ATmega169
\r
9 // Description.: Functions for LCD_functions.c
\r
11 // Revisions...: 1.0
\r
13 // YYYYMMDD - VER. - COMMENT - SIGN.
\r
15 // 20021015 - 1.0 - File created - LHM
\r
16 // 20031009 port to avr-gcc/avr-libc - M.Thomas
\r
18 //*****************************************************************************
\r
22 #include <avr/pgmspace.h>
\r
24 // mt void LCD_puts_f(char __flash *pFlashStr, char scrollmode);
\r
25 // mt jw writes : ...(char *pFlahsStr...
\r
26 int LCD_printf(const char * format, ...);
\r
27 void LCD_puts(char *pStr);
\r
28 void LCD_UpdateRequired(char update, char scrollmode);
\r
29 void LCD_Clear(void);
\r
30 void LCD_Colon(char show);
\r
31 void LCD_ShowTime(uint32 tmr);
\r
32 void LCD_FlashReset(void);
\r
33 //char SetContrast(char input);
\r