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@5:a3ea7c82b7e1, 2017-03-30 (annotated)
- Committer:
- suhasini
- Date:
- Thu Mar 30 11:34:04 2017 +0000
- Revision:
- 5:a3ea7c82b7e1
- Parent:
- 3:9a06c2bed650
PID updation possible, Proper screen navigation enabled, Return functionality from BP to main screen-done, date-time format modified, BP data not saved into SD card
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(); |
suhasini | 5:a3ea7c82b7e1 | 21 | unsigned char touch_again_ecg(); |
suhasini | 5:a3ea7c82b7e1 | 22 | unsigned char touch_again_glc(); |
suhasini | 5:a3ea7c82b7e1 | 23 | unsigned char touch_again_bp(); |
nikitateggi | 3:9a06c2bed650 | 24 | void screen_bp2(); |
nikitateggi | 0:c47fb0c1bbf6 | 25 | #endif |