summaryrefslogtreecommitdiff
path: root/lcd.h
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-29 10:55:34 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2012-08-29 10:55:34 -0400
commitfacf818bfa54d1fc553cf06a0f22012ea033ace0 (patch)
tree254143d4d025f5b2d37af59e95470b48ba9421c4 /lcd.h
parentb127640ef5f09b10a648701c52f950f3fe569ce6 (diff)
add some menu variables as globals, to remove FIXMEs
Diffstat (limited to 'lcd.h')
-rw-r--r--lcd.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lcd.h b/lcd.h
index 804b44f..4c6edfc 100644
--- a/lcd.h
+++ b/lcd.h
@@ -2,7 +2,10 @@
#include <glib.h>
-void LCD_display_extended_message(char *response, gboolean show_change_message);
+#define LCD_cols 40
+#define LCD_rows 4 /* 4x40 LCD */
+
+void LCD_display_extended_message(char *response, gboolean show_change_message, gboolean is_error_screen);
void LCD_clear();
void LCD_write(int row, int col, char *LCD_string);
void LCD_initialize(void);