HazardMind "your bloods worth bottling...." I'm now with your help actually getting some data off the touch screen showing on the Serial Monitor.
For other readers of this post your mention of UTouch myTouch( 6, 5, 4, 3, 2);
actually requires this display/touch screen wired to a UNO as follows:
T_CLK Uno pin D6
T_CS D5
T_DIN D4
T_DO D3
IRQ D2
This then allows the TFT screen to then be connected to UNO digital pins 9-13 as per my previous post.
The Arduino I'm using is actually a Freaduino which has a slide switch to select 5V / 3.3V for the outputs. I've just received some CD4050 hex buffers off ebay so later today I may try converting my test rig to a UNO or NANO to check my screen still displays with the 5V outputs converted down to 3.3V.
I sense I may be getting to the limit of what a UNO can do compared to your DUE which has a lot more horsepower. The author of the UTFT / UTouch libraries also makes no real mention of stand alone UNOs e.g. the code fragment below..... including mention of the following line which doesn't relate to our particular TFT Module UTFT myGLCD(ITDB32S,38,39,40,41);
// Initialize display
// ------------------
// Set the pins to the correct ones for your development board
// -----------------------------------------------------------
// Standard Arduino Uno/2009 Shield : ,19,18,17,16
// Standard Arduino Mega/Due shield : ,38,39,40,41
// CTE TFT LCD/SD Shield for Arduino Due : ,25,26,27,28
// Teensy 3.x TFT Test Board : ,23,22, 3, 4
// ElecHouse TFT LCD/SD Shield for Arduino Due : ,22,23,31,33
//
// Remember to change the model parameter to suit your display module!
UTFT myGLCD(ITDB32S,38,39,40,41);
My bottom line is I'd just like to be able to have some buttons on the screen that can be clicked on to cause certain program actions, the beginning of developing a GUI
Appreciate any more help / comments forthcoming