#include <sys/types.h>
#include <68332/types.h>
Go to the source code of this file.
Functions | |
int | lcd_init (uint8 rows, uint8 columns, uint8 font, bool fourbitmode) |
void | lcd_display_enable (bool on) |
void | lcd_cursor (bool on, bool flashing) |
void | lcd_clear () |
void | lcd_home () |
void | lcd_gotoxy (uint8 x, uint8 y) |
void | lcd_printf (char *pszPattern,...) |
void | lcd_write_string (char *string) |
|
Initialize LCD display.
|
|
Turn the display on or off.
|
|
Control the appearance of the cursor.
|
|
Clear the display. |
|
Home the cursor. The next character output will appear at 0,0 |
|
Position the cursor.
|
|
Send output to the LCD at the current cursor location. This function uses the same syntax as printf(). |
|
Display a string on the LCD at the current cursor location. |