diff options
author | Matt Strapp <strap012@umn.edu> | 2021-03-28 10:12:10 -0500 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2021-03-28 10:12:10 -0500 |
commit | f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb (patch) | |
tree | dd3ab9128eee3ca38e86f83d705526d596c0f732 /EE3102Testing.X/spies046_lab6_lcdLib_v001.h | |
parent | Added intial PIC24 Firmware (diff) | |
download | ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.gz ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.bz2 ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.lz ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.xz ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.zst ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.zip |
Add a basic VtoI function
Also rearrange things and commit iconoclasm
Diffstat (limited to 'EE3102Testing.X/spies046_lab6_lcdLib_v001.h')
-rw-r--r-- | EE3102Testing.X/spies046_lab6_lcdLib_v001.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/EE3102Testing.X/spies046_lab6_lcdLib_v001.h b/EE3102Testing.X/spies046_lab6_lcdLib_v001.h deleted file mode 100644 index 452ed54..0000000 --- a/EE3102Testing.X/spies046_lab6_lcdLib_v001.h +++ /dev/null @@ -1,30 +0,0 @@ -/*
- * 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 */
-
|