summaryrefslogtreecommitdiff
path: root/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcd.h')
-rw-r--r--lcd.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lcd.h b/lcd.h
index a76d732..5b7dbc7 100644
--- a/lcd.h
+++ b/lcd.h
@@ -5,9 +5,6 @@
#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 */
@@ -16,4 +13,5 @@ void LCD_display_extended_message(char *response, gboolean show_change_message,
void LCD_clear();
void LCD_write(int row, int col, char *LCD_string);
void LCD_write_padded_spaces(int row, int col, char *LCD_string, int width);
+void LCD_write_padded_to_end_of_line(int row, int col, char *LCD_string);
void LCD_initialize(void);