diff options
Diffstat (limited to 'lcd.c')
-rwxr-xr-x | lcd.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -96,6 +96,7 @@ void Lcd_Write_String(char *a) { Lcd_Write_Char(a[i]);
}
+/*
void Lcd_Shift_Right(void) {
Lcd_Cmd(0x01);
Lcd_Cmd(0x0C);
@@ -105,6 +106,7 @@ void Lcd_Shift_Left(void) { Lcd_Cmd(0x01);
Lcd_Cmd(0x08);
}
+ */
// For some VFD's like Noritake
#ifdef VFD
@@ -116,4 +118,4 @@ void Vfd_Set_Brightness(int level) { Lcd_Cmd(0x02);
Lcd_Write_Char(level);
}
-#endif
\ No newline at end of file +#endif
|