Due GUI (Graphical user interface) - [now community project]

Hi All.

I just received my 5.00" CTE LCD and a CTE Due shield.. Loaded version 0.13 of the great Due GUI and ran the example demo 02...looks great..one problem was that there was no touch response....bummer...want I found was that touch was working but the Y axis was inverted!

Hmm.... checked the jumpers on the shield and they looked OK, at least from what I could find on the CTE website...so I poked around in the source for Due Gui and found there is a function for both X and y axis reversing....

I added this-- DueGUI.setReverseY(true) to setup:

 // Initialise DueGUI
  DueGUI.InitGUI(6,5,32,3,2,52,2,51);
  DueGUI.setReverseY(true);

Works now..

Can't wait until this is complete it is really very nicely done. I have written a fairly complicated (graphically) 4 screen GUI using the original work by Mr. Karlsen for the Uno32 by Chipkit...sorry Arduino , but I needed the speed for the screen redraws!..

Feature Request:

Add the ability to define line width in DrawLine.. I need fatter lines! It can be done by drawing offset multiple lines but, that's a pain....

thanks for all your hard work!

David Garrison
Gaithersburg, MD USA