my glcd works properly but my problem is that my touch works very weird..when i touch somewhere it will do function of somewhere else. i am using standard UTFT,UTOUCH AND UTFT_BUTTON Library. I've calibrate touch with UTOUCH calibration example but nothing change much...please help me out.
did that work? Im having the same problem. Got a 5 inch version and its displaying correctly but the touch is all screwed up. seems upside down and inverted and also only registering a quarter of the board.?
I've fix the problem now..first i've changed to arduino sketch version1.0.6. then as mention in utft.pdf i have calibrated touch screen with external power supply. after that i have to put very much pressure for require value of touch otherwise it shows random value. then i've add delay line after myTouch.datadataAvailable(); like below..
from
if (myTouch.dataAvailable())
{
myTouch.read();
x=myTouch.getX();
y=myTouch.getY();
.
.
.
to,
if (myTouch.dataAvailable())
{
delay(20);
myTouch.read();
x=myTouch.getX();
y=myTouch.getY();