diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-08-06 19:01:39 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-08-06 19:01:39 -0500 |
commit | f0b60214163c8d69e9faf22abe5fd72a3628342d (patch) | |
tree | be559a28ac78be9d5523662ff11f773047bffd8a | |
parent | 31f9a3ca20b63bdf467cc559e729ac54f1c1eca0 (diff) |
Remove display.h
-rw-r--r-- | display.c | 23 | ||||
-rw-r--r-- | display.h | 4 |
2 files changed, 0 insertions, 27 deletions
diff --git a/display.c b/display.c deleted file mode 100644 index cee2256..0000000 --- a/display.c +++ /dev/null @@ -1,23 +0,0 @@ -#include "display.h" - -void display_Intro() { - // Give an intro message on the LCD - Lcd_Clear(); - Lcd_Set_Cursor(1, 1); - Lcd_Write_String("RTC/LCD with PIC"); - Lcd_Set_Cursor(2, 1); - Lcd_Write_String(" Circuit Digest"); - __delay_ms(1000); //display for 1sec -} - -void display_Lcd_Layout() { - // Setup time date display format - Lcd_Clear(); - Lcd_Set_Cursor(1, 1); - Lcd_Write_String("HH:mm:ss -PP.P"); - Lcd_Write_Char(0xDF); - Lcd_Write_Char('C'); - Lcd_Set_Cursor(2, 1); - Lcd_Write_String("ddd, DD/MM/YY "); - __delay_ms(1000); -} diff --git a/display.h b/display.h deleted file mode 100644 index 3a9db75..0000000 --- a/display.h +++ /dev/null @@ -1,4 +0,0 @@ -#include "lcd.h" - -void display_Intro(); -void display_Lcd_Layout();
\ No newline at end of file |