diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-09-30 18:19:55 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-09-30 18:19:55 -0500 |
commit | 52e67e191db44f2dfa39eab09a042d24f9a8f3a3 (patch) | |
tree | a1972c24fabd1a5b5ed9d1d9e818dbc777b23be1 /lcd.h | |
parent | 442b88a5b418a7cb7bec780800f9635e0c731cba (diff) |
Refactor redundant source lines and simplify displaying of text and characters with locations. Remove unneeded variables and comment out unused functions until used.
Diffstat (limited to 'lcd.h')
-rwxr-xr-x | lcd.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,10 +7,10 @@ void Lcd_Set_Cursor(char, char); void Lcd_Init(void);
void Lcd_Write_Char(char);
void Lcd_Write_String(char *);
-void Lcd_Shift_Right(void);
-void Lcd_Shift_Left(void);
+//void Lcd_Shift_Right(void);
+//void Lcd_Shift_Left(void);
// For some VFD's like Noritake
#ifdef VFD
void Vfd_Set_Brightness(int);
-#endif
\ No newline at end of file +#endif
|