thermferm/lcd-buffer.h

Sun, 15 Feb 2015 20:38:54 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 15 Feb 2015 20:38:54 +0100
changeset 310
53774295e14a
parent 245
b01b6238eb67
permissions
-rw-r--r--

Added Kp, Kd and Ki settings to the units. Bumped to version 0.2.9

#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