aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--display.c23
-rw-r--r--display.h4
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