ButterflyMP3

LCD_functions.h

Go to the documentation of this file.
00001 //*****************************************************************************
00002 //
00003 //  File........: LCD_functions.h
00004 //
00005 //  Author(s)...: ATMEL Norway
00006 //
00007 //  Target(s)...: ATmega169
00008 //
00009 //  Description.: Functions for LCD_functions.c
00010 //
00011 //  Revisions...: 1.0
00012 //
00013 //  YYYYMMDD - VER. - COMMENT                                       - SIGN.
00014 //
00015 //  20021015 - 1.0  - File created                                  - LHM
00016 //  20031009          port to avr-gcc/avr-libc                      - M.Thomas (*)
00017 //
00018 //*****************************************************************************
00019 
00020 // mt
00021 #include <avr/pgmspace.h>
00022 //Functions
00023 // mt void LCD_puts_f(char __flash *pFlashStr, char scrollmode);
00024 // mt jw writes : ...(char *pFlahsStr...
00025 void LCD_puts_f(const char *pFlashStr, char scrollmode);
00026 void LCD_puts(char *pStr, char scrollmode);
00027 void LCD_UpdateRequired(char update, char scrollmode);
00028 //mt void LCD_putc(char digit, char character);
00029 void LCD_putc(uint8_t digit, char character);
00030 void LCD_Clear(void);
00031 void LCD_Colon(char show);
00032 void LCD_FlashReset(void);
00033 //char SetContrast(char input);
 All Files Functions Variables Typedefs Enumerations Enumerator Defines