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@0:c47fb0c1bbf6, 2016-12-27 (annotated)
- Committer:
- nikitateggi
- Date:
- Tue Dec 27 10:30:48 2016 +0000
- Revision:
- 0:c47fb0c1bbf6
- Child:
- 1:8316c23ec6b9
poc display
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 | 0:c47fb0c1bbf6 | 8 | void touch1() ; |
nikitateggi | 0:c47fb0c1bbf6 | 9 | int readTouchY(void); |
nikitateggi | 0:c47fb0c1bbf6 | 10 | void detect_touch(); |
nikitateggi | 0:c47fb0c1bbf6 | 11 | int readTouchX(void); |
nikitateggi | 0:c47fb0c1bbf6 | 12 | void EnableTouch(void); |
nikitateggi | 0:c47fb0c1bbf6 | 13 | void DisableTouch (void); |
nikitateggi | 0:c47fb0c1bbf6 | 14 | unsigned char touch_main(); |
nikitateggi | 0:c47fb0c1bbf6 | 15 | unsigned char touch_glc(); |
nikitateggi | 0:c47fb0c1bbf6 | 16 | unsigned char touch_ecg(); |
nikitateggi | 0:c47fb0c1bbf6 | 17 | unsigned char touch_bp(); |
nikitateggi | 0:c47fb0c1bbf6 | 18 | |
nikitateggi | 0:c47fb0c1bbf6 | 19 | #endif |