brewco/slcd.h

Wed, 02 Dec 2015 17:16:41 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 02 Dec 2015 17:16:41 +0100
changeset 443
6b80a37fdf8d
parent 434
eb724767860d
permissions
-rw-r--r--

Added programming display CGRAM. Added display of characters from CGRAM. Changed prompts to allow free prompt strings. More code for the brewsystem unit editor.

#ifndef	_SLCD_H
#define	_SLCD_H


void slcdDummy(int fd);
void slcdLEDs(int fd);
void slcdClear(int fd);
void slcdPosition(int fd, int x, int y);
void slcdCharDef(int fd, int index, unsigned char data[8]);
void slcdPutchar(int fd, unsigned char c);
void slcdPuts(int fd, const char *string);
void slcdPrintf(int fd, const char *message, ...);
int  slcdInit(int fd, int cols, int rows);


#endif

mercurial