diff options
Diffstat (limited to 'PICCode.X/lcd.h')
-rw-r--r-- | PICCode.X/lcd.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/PICCode.X/lcd.h b/PICCode.X/lcd.h new file mode 100644 index 0000000..aeefb42 --- /dev/null +++ b/PICCode.X/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 + |