Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef LCD_H_
00011 #define LCD_H_
00012
00013
00014 #include "../lpc_config.h"
00015 #include<stdio.h>
00016 #include "../timer/timer.h"
00017
00018
00019 #define lcd_dados 0xFF
00020 #define lcd_en (1<<24)
00021 #define lcd_rs (1<<25)
00022 #define lcd_rw (1<<30)
00023
00024
00025 void lcd_command(int comando);
00026 void lcd_putc(int dado);
00027 void lcd_string(char *dado);
00028 void lcd_goto(int linha, int coluna);
00029 void init_lcd(void);
00030 void lcd_clr(void);
00031
00032 #endif