aboutsummaryrefslogtreecommitdiffstats
path: root/Lab5.X/lab5_lcd.h
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2020-04-08 11:17:47 -0500
committerRossTheRoss <msattr@gmail.com>2020-04-08 11:17:47 -0500
commitf7dddf06297f415413760f3bedf00f7297e60cf7 (patch)
tree2a3008d3efcf7b140593b120ca925e1757e1d83c /Lab5.X/lab5_lcd.h
parente (diff)
downloadee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar.gz
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar.bz2
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar.lz
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar.xz
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.tar.zst
ee2361-f7dddf06297f415413760f3bedf00f7297e60cf7.zip
Forget to add a bunch of things
oops
Diffstat (limited to 'Lab5.X/lab5_lcd.h')
-rw-r--r--Lab5.X/lab5_lcd.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Lab5.X/lab5_lcd.h b/Lab5.X/lab5_lcd.h
new file mode 100644
index 0000000..aeefb42
--- /dev/null
+++ b/Lab5.X/lab5_lcd.h
@@ -0,0 +1,17 @@
+#ifndef LCD_HEADER
+#define LCD_HEADER
+
+#include <xc.h> // include processor files - each processor file is guarded.
+#ifdef __cplusplus
+extern "C" {
+#endif
+ void lcd_cmd(char command);
+ void lcd_init(void);
+ void lcd_setCursor(char x, char y);
+ void lcd_printChar(char myChar);
+ void lcd_printStr(const char s[]);
+#ifdef __cplusplus
+}
+#endif
+#endif
+