thermferm/lcd-buffer.h

Tue, 12 Aug 2014 21:26:26 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 12 Aug 2014 21:26:26 +0200
changeset 225
b18b06c17a80
parent 222
6519fc50f543
child 245
b01b6238eb67
permissions
-rw-r--r--

Changed CSS colors for the LED's. Removed the old LED's.

#ifndef	LCD_BUFFER_H
#define	LCD_BUFFER_H


typedef struct _lcd_rows {
    struct _lcd_rows	*next;
    char		row[81 * sizeof(char)];
} lcd_rows;


void lcd_buf_write(int, const char *, ...);
void lcd_buf_step(int);
void lcd_buf_show(void);

#endif

mercurial