2000-11-29 18:48:53 +00:00
|
|
|
#ifndef LB216_H
|
|
|
|
|
#define LB216_H
|
|
|
|
|
|
2001-12-30 00:15:25 +00:00
|
|
|
#include "lcd.h"
|
2000-11-29 18:48:53 +00:00
|
|
|
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT int LB216_init(Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void LB216_close(Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT int LB216_width (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int LB216_height (Driver *drvthis);
|
2006-04-10 08:45:42 +00:00
|
|
|
MODULE_EXPORT int LB216_cellwidth (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int LB216_cellheight (Driver *drvthis);
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void LB216_clear (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void LB216_flush(Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void LB216_string (Driver *drvthis, int x, int y, const char string[]);
|
|
|
|
|
MODULE_EXPORT void LB216_chr(Driver *drvthis, int x, int y, char c) ;
|
2000-11-29 18:48:53 +00:00
|
|
|
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void LB216_old_vbar(Driver *drvthis, int x, int len);
|
|
|
|
|
MODULE_EXPORT void LB216_old_hbar(Driver *drvthis, int x, int y, int len);
|
|
|
|
|
MODULE_EXPORT void LB216_num(Driver *drvthis, int x, int num);
|
|
|
|
|
MODULE_EXPORT int LB216_icon(Driver *drvthis, int x, int y, int icon);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void LB216_set_char(Driver *drvthis, int n, char *dat);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void LB216_backlight(Driver *drvthis, int on);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2000-11-29 18:48:53 +00:00
|
|
|
#endif
|