EU1KY AA
touch.h
Go to the documentation of this file.
1 /*
2  * (c) Yury Kuchura
3  * kuchura@gmail.com
4  *
5  * This code can be used on terms of WTFPL Version 2 (http://www.wtfpl.net/).
6  */
7 
8 #ifndef _TOUCH_H_
9 #define _TOUCH_H_
10 
11 #include "LCD.h"
12 #include "FreqCounter.h"
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 void TOUCH_Init(void);
19 
20 uint8_t TOUCH_Poll(LCDPoint* pCoord);
21 
22 uint8_t TOUCH_IsPressed(void);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 #endif //_TOUCH_H_
28 
uint8_t TOUCH_Poll(LCDPoint *pCoord)
Definition: touch.c:29
void TOUCH_Init(void)
Definition: touch.c:7
uint8_t TOUCH_IsPressed(void)
Definition: touch.c:43
LCDPoint
Definition: LCD.h:22