This adds minimal support for the display - including a 14 segment font. (Looks like this is the first 14 segment display to be supported by lcdproc.) Tested on linux. Signed-off-by: Harald Geyer <harald@ccbib.org>
14 lines
545 B
C
14 lines
545 B
C
#ifndef OLIMEX_LCD1x9_H
|
|
#define OLIMEX_LCD1x9_H
|
|
|
|
MODULE_EXPORT int olimex1x9_init (Driver *drvthis);
|
|
MODULE_EXPORT void olimex1x9_close (Driver *drvthis);
|
|
MODULE_EXPORT int olimex1x9_width (Driver *drvthis);
|
|
MODULE_EXPORT int olimex1x9_height (Driver *drvthis);
|
|
MODULE_EXPORT void olimex1x9_clear (Driver *drvthis);
|
|
MODULE_EXPORT void olimex1x9_flush (Driver *drvthis);
|
|
MODULE_EXPORT void olimex1x9_string (Driver *drvthis, int x, int y, const char string[]);
|
|
MODULE_EXPORT void olimex1x9_chr (Driver *drvthis, int x, int y, char c);
|
|
|
|
#endif
|