thermferm/lcd-buffer.h

Sun, 03 Aug 2014 22:49:33 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 03 Aug 2014 22:49:33 +0200
changeset 175
b73490398368
parent 108
50d2187fdb74
child 204
9a14d6b2de7f
permissions
-rw-r--r--

Units editing is more or less complete. Changed structures for heating, cooling, fan and door. Updated the web interface to confuigure all these things.

#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