Updated with option to return from BP screen to main screen, resolved screen navigation issues
Dependencies: SDFileSystem TFTLCD_8bit ds3231 program mbed
Fork of poc_dis_5 by
touch_modules.h@3:9a06c2bed650, 2017-02-10 (annotated)
- Committer:
- nikitateggi
- Date:
- Fri Feb 10 10:39:13 2017 +0000
- Revision:
- 3:9a06c2bed650
- Parent:
- 1:8316c23ec6b9
- Child:
- 5:a3ea7c82b7e1
Peak detect to 400 samples
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nikitateggi | 0:c47fb0c1bbf6 | 1 | #ifndef TOUCH_MODULES_H_ |
nikitateggi | 0:c47fb0c1bbf6 | 2 | #define TOUCH_MODULES_H_ |
nikitateggi | 0:c47fb0c1bbf6 | 3 | |
nikitateggi | 0:c47fb0c1bbf6 | 4 | #define TOTAL1 65535 |
nikitateggi | 0:c47fb0c1bbf6 | 5 | #define X_MAX 240 |
nikitateggi | 0:c47fb0c1bbf6 | 6 | #define Y_MAX 320 |
nikitateggi | 0:c47fb0c1bbf6 | 7 | unsigned char touch_main(); |
nikitateggi | 1:8316c23ec6b9 | 8 | unsigned char touch_main_1(); |
nikitateggi | 1:8316c23ec6b9 | 9 | unsigned char touch_main_2(); |
nikitateggi | 0:c47fb0c1bbf6 | 10 | void touch1() ; |
nikitateggi | 0:c47fb0c1bbf6 | 11 | int readTouchY(void); |
nikitateggi | 0:c47fb0c1bbf6 | 12 | void detect_touch(); |
nikitateggi | 0:c47fb0c1bbf6 | 13 | int readTouchX(void); |
nikitateggi | 0:c47fb0c1bbf6 | 14 | void EnableTouch(void); |
nikitateggi | 0:c47fb0c1bbf6 | 15 | void DisableTouch (void); |
nikitateggi | 0:c47fb0c1bbf6 | 16 | unsigned char touch_main(); |
nikitateggi | 0:c47fb0c1bbf6 | 17 | unsigned char touch_glc(); |
nikitateggi | 0:c47fb0c1bbf6 | 18 | unsigned char touch_ecg(); |
nikitateggi | 0:c47fb0c1bbf6 | 19 | unsigned char touch_bp(); |
nikitateggi | 1:8316c23ec6b9 | 20 | unsigned char touch_ret(); |
nikitateggi | 1:8316c23ec6b9 | 21 | unsigned char touch_again(); |
nikitateggi | 3:9a06c2bed650 | 22 | void screen_bp2(); |
nikitateggi | 0:c47fb0c1bbf6 | 23 | #endif |