File "keypad.h"

Full Path: /home/analogde/www/private/Projet/keypad.h
File size: 460 bytes
MIME-type: text/x-c
Charset: utf-8

#ifndef _M68HC12_KEYPAD_DEF_H
#define _M68HC12_KEYPAD_DEF_H

// Constant Definitions
// --------------------

// increase this if you're seeing multiple keys returned, decrease if you're missing keys
#define KEY_DEBTIME 0x20        // key debounce time

// RAM Variables
// -------------
extern unsigned char Newkey, Oldkey;

// Function Prototypes
// -------------------
void InitKeypad();
char kbhit();
char getkeypad();


#endif /* _M68HC12_KEYPAD_DEF_H */