thermferm/lcd-buffer.h

Sun, 13 Jul 2014 21:00:01 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 13 Jul 2014 21:00:01 +0200
changeset 108
50d2187fdb74
parent 106
1bd9a16f5061
child 204
9a14d6b2de7f
permissions
-rw-r--r--

New rotating LCD display

#ifndef	LCD_BUFFER_H
#define	LCD_BUFFER_H


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


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

#endif

mercurial