diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-30 11:38:48 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-30 11:38:48 -0400 |
commit | d6c71646ddc4a34293bb5cadde78a30806d8eace (patch) | |
tree | 11ab0d737aca55ccf3e96df40cd8624f75c85dfd /lcd.h | |
parent | 996f3d52275475f2478f377f12f0ef7571ecc795 (diff) |
first attempt at lcd menus
Diffstat (limited to 'lcd.h')
-rw-r--r-- | lcd.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -4,6 +4,13 @@ #define LCD_cols 40 #define LCD_rows 4 /* 4x40 LCD */ +#define LCD_chars_total 160 + +/* LCD menu hardware definitions - FIXME */ + +#define LCD_col_width 13 /* characters per LCD column */ +#define LCD_max_entries_per_page 12 /* how many items fit on one LCD screen at a time */ +#define LCD_max_entries 24 /* upper limit for menu arrays */ void LCD_display_extended_message(char *response, gboolean show_change_message, gboolean is_error_screen); void LCD_clear(); |