thermferm/lcd-buffer.h

Fri, 08 Aug 2014 23:07:44 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 08 Aug 2014 23:07:44 +0200
changeset 195
b34a1b2421fb
parent 108
50d2187fdb74
child 204
9a14d6b2de7f
permissions
-rw-r--r--

Reset output when a different profile is selected. Better startup logging about the unit state. Added Beer, Fridge and partial Profile settings from the liveview weeb screen.

#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