thermferm/lcd-buffer.h

Wed, 17 Dec 2014 15:44:58 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 17 Dec 2014 15:44:58 +0100
changeset 303
19a9a3912d03
parent 245
b01b6238eb67
permissions
-rw-r--r--

Added PING/PONG command to the server. Bumped to version 0.2.7

#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_reset(void);
void lcd_buf_write(int, const char *, ...);
void lcd_buf_step(int);
void lcd_buf_show(void);

#endif

mercurial