I have an Arduino Uno 1.0 with a Seeedstudio 2.8" Touschreen attached. i can run the examples from the libraries TFT and touchscreen, but the circles or lines are not drawn correctly.
I did a small test with a sketch who draws a line with incremental x and Y coordinates and get a strange result.
The code looks like this :
for(unsigned int i=0; i<200; i++){
Tft.setPixel(i,i,WHITE);
}
i would expect a nice line. I have uploaded an image which shows teh result… what am i doing wrong ?