Suwmiarka/Soft/Suwmiarka/key.h

26 lines
487 B
C

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