diff options
author | Andrea <smith.andreacleo@gmail.com> | 2021-03-27 12:12:39 -0500 |
---|---|---|
committer | Andrea <smith.andreacleo@gmail.com> | 2021-03-27 12:12:39 -0500 |
commit | 2611212d80a1a65c47e09822e75f2506283c949a (patch) | |
tree | a9e8572f72ae94c981e52504b153fe46dd892365 /EE3102Testing.X/spies046_lab6_lcdLib_v001.h | |
parent | Completed .Pcb (diff) | |
download | ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar.gz ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar.bz2 ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar.lz ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar.xz ee3102-2611212d80a1a65c47e09822e75f2506283c949a.tar.zst ee3102-2611212d80a1a65c47e09822e75f2506283c949a.zip |
Added intial PIC24 Firmware
Diffstat (limited to '')
-rw-r--r-- | EE3102Testing.X/spies046_lab6_lcdLib_v001.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/EE3102Testing.X/spies046_lab6_lcdLib_v001.h b/EE3102Testing.X/spies046_lab6_lcdLib_v001.h new file mode 100644 index 0000000..452ed54 --- /dev/null +++ b/EE3102Testing.X/spies046_lab6_lcdLib_v001.h @@ -0,0 +1,30 @@ +/*
+ * File: spies046_lab6_lcdLib_v001.h
+ * Author: micha
+ *
+ * Created on April 14, 2020, 8:43 PM
+ */
+
+#ifndef SPIES046_LAB6_LCDLIB_V001_H
+#define SPIES046_LAB6_LCDLIB_V001_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ void delay(int msecs);
+ void lcd_cmd(char package);
+ void lcd_init(void);
+ void lcd_setCursor(char col, char row);
+ void lcd_printChar(char myChar);
+ void lcd_printStr(const char s[]);
+ void lcd_ShiftL(const char s[]);
+ void findLength(const char s[]);
+ void contrastMask(char conTot);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* SPIES046_LAB6_LCDLIB_V001_H */
+
|