aboutsummaryrefslogtreecommitdiffstats
path: root/Lab3.X/numpad.h
blob: fe3f7241393607f3986e39b2ef4b5db4176e557b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef NUMPAD_H
#define	NUMPAD_H

#include <xc.h> // include processor files - each processor file is guarded.  

#ifdef	__cplusplus
extern "C" {
#endif /* __cplusplus */

    // Insert declarations
    void initKeyPad(void);
    char readKeyPadRAW(void);
    char cycle();

#ifdef	__cplusplus
}
#endif

#endif