I have the TFT display captioned above and using the standard UTFT libraries, I have all the display functions working the way I would like. However, now I am trying to implement the touch functions but without much success thus far.
I use the descriptor of 'ITDB24D' in the code and define the pins for the display as
UTFT myGLCD(ITDB24D,19,18,17,16);
However, the default pins for a UNO shield are as follows:
UTouch myTouch( 15, 10, 14, 9, 8);
And these definitely don't work. Working from the ITEAD documentation, it shows the following pins involved with the Touch component:
D8 Touch_Dout
D9 Touch_IRQ
A0 Touch_Din
A1 Touch_CLK
According to the documentation, the chips used are "The Arduino 2.8 TFT Touch shield uses the ILI9325DS controller , it support 8bit data interface. The touch IC is TSC2046."
Their documentation goes on to say that the Touch libraries do not currently support this shield (as of June 2014) but they are working on it.
I would appreciate any recommendations on how to get the touch sensor working for this shield on either a UNO or a Mega2560.