aboutsummaryrefslogtreecommitdiffstats
path: root/Lab5.X/lab5_lcd.h
blob: aeefb424621b3d12bb0e572c6b2759d26ebdfcae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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