v0.5 kick-off
This commit is contained in:
+28
-24
@@ -1,24 +1,28 @@
|
||||
/*
|
||||
* Driver for SED1330 graphical displays
|
||||
* Header file
|
||||
*/
|
||||
|
||||
#ifndef SED1330_H
|
||||
#define SED1330_H
|
||||
|
||||
#include "lcd.h"
|
||||
|
||||
int sed1330_init( lcd_logical_driver * driver, char *args );
|
||||
void sed1330_close();
|
||||
void sed1330_clear();
|
||||
void sed1330_string( int x, int y, char lcd[] );
|
||||
void sed1330_chr( int x, int y, char c );
|
||||
void sed1330_flush();
|
||||
void sed1330_cursor( int x, int y, char state );
|
||||
void sed1330_backlight( int on );
|
||||
void sed1330_vbar( int x, int len );
|
||||
void sed1330_hbar( int x, int y, int len );
|
||||
void sed1330_num( int x, int num );
|
||||
void sed1330_heartbeat( int type );
|
||||
|
||||
#endif
|
||||
/*
|
||||
* Driver for SED1330 graphical displays
|
||||
* Header file
|
||||
*/
|
||||
|
||||
#ifndef SED1330_H
|
||||
#define SED1330_H
|
||||
|
||||
#include "lcd.h"
|
||||
|
||||
int sed1330_init( Driver * drvthis, char *args );
|
||||
MODULE_EXPORT void sed1330_close( Driver * drvthis );
|
||||
MODULE_EXPORT int sed1330_width( Driver * drvthis );
|
||||
MODULE_EXPORT int sed1330_height( Driver * drvthis );
|
||||
MODULE_EXPORT void sed1330_clear( Driver * drvthis );
|
||||
MODULE_EXPORT void sed1330_flush( Driver * drvthis );
|
||||
MODULE_EXPORT void sed1330_string( Driver * drvthis, int x, int y, char lcd[] );
|
||||
MODULE_EXPORT void sed1330_chr( Driver * drvthis, int x, int y, char c );
|
||||
|
||||
MODULE_EXPORT void sed1330_vbar( Driver * drvthis, int x, int y, int len, int promille, int pattern );
|
||||
MODULE_EXPORT void sed1330_hbar( Driver * drvthis, int x, int y, int len, int promille, int pattern );
|
||||
MODULE_EXPORT void sed1330_num( Driver * drvthis, int x, int num );
|
||||
MODULE_EXPORT void sed1330_heartbeat( Driver * drvthis, int type );
|
||||
MODULE_EXPORT void sed1330_cursor( Driver * drvthis, int x, int y, char state );
|
||||
|
||||
MODULE_EXPORT void sed1330_backlight( Driver * drvthis, int on );
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user