Suwmiarka/Soft/Suwmiarka/key.h

26 lines
487 B
C
Raw Normal View History

/* nazwa pliku: key.h
2013-06-09 08:05:35 +00:00
opis: Odczyt klawiszy - nagłówek
*/
#ifndef __KEY_H
#define __KEY_H
#include <stdint.h>
//-----------------------------Stałe------------------------------//
//kody klawiszy
#define KEY_IDLE 0
2013-06-09 08:05:35 +00:00
#define KEY_MEAS 1
#define KEY_2 2
#define DEBOUNCE_DELAY 50 //50ms
//-----------------------------Funkcje------------------------------//
void Key_Initialize (void);
2013-06-09 08:05:35 +00:00
uint8_t Key_Poll (void);
uint8_t Key_Get (void);
void Key_ClearEvent (void);
#endif