User manual

Table Of Contents
mikroC PRO for PIC32
MikroElektronika
585
TP_TFT_Init
Prototype
void TP_TFT_Init(unsigned int display_width, unsigned int display_height,
unsigned int readX_ChNo, unsigned int readY_ChNo);
Description Initialize TFT touch panel display. Default touch panel ADC threshold value is set to 900.
Parameters - display_width: set display width.
- display_height: set display height.
- readX_ChNo: read X coordinate from desired ADC channel.
- readY_ChNo: read Y coordinate from desired ADC channel.
Returns Nothing.
Requires Before calling this function initialize ADC module.
Example
ADC1_Init(); // Initalize ADC module
TP_TFT_Init(320, 240, 13, 12); // Initialize touch panel
Notes None.
TP_TFT_Set_ADC_Threshold
Prototype
void TP_TFT_Set_ADC_Threshold(unsigned int threshold);
Description Set custom ADC threshold value, call this function after TP_TFT_Init.
Parameters - threshold: custom ADC threshold value.
Returns Nothing.
Requires TP_TFT_Init has to be called before using this routine.
Example
TP_TFT_Set_ADC_Threshold(900); // Set touch panel ADC threshold
Notes None.