Hi,
I got stuck. I am trying to display a menu applicaion and writing some informations, icons , buttons on the display. Any help would be great .
I used this LCD and the library example is working fine. SSD1963 diriver ic.
i am using;
1- arduino due without any shield.
2- My LCD is CPLD SDRAM based 5 " TFT - MD050SD link below
http://www.ebay.com/itm/5-5-0-inch-TFT-LCD-module-CPLD-SDRAM-800x480-arduino-DUE-MEGA2560-4-3-SSD1963-/121186430206
3- I am trying to use UTF library - thanks to H.Karlsen
downloaded UTFT henning library from here Electronics - Henning Karlsen
But i could not get any succes about that.
First I tried that.
I tried using standart arduino shield connection for itead 3.2 TFT in the link. It is mega shield but i only use D0-D15 connection directly DUE board without shield -> http://imall.iteadstudio.com/im120417021.html
because i can make it with SSD1963 LCD board and UTFT_Demo_800x480.ino example. So,
commented "#define CTE_DUE_SHIELD 1" and "#define EHOUSE_DUE_SHIELD 1" lines in the HW_ARM_defines.h.
UTFT myGLCD(CPLD,38,39,40,41);
UTFT myGLCD(EHOUSE50CPLD,38,39,40,41);
i used the sketch UTFT_Demo_800x480.ino and UTFT_CPLD_PageSwitching examples
Nothing - i can only change the LCD backlight - CPLD PWM -- between 0-16 you can change by writing "myGLCD.setBrightness(2); "
Second i tried that CTE shield and the solution above . i used only schematic connection of the shield. i dont have one
http://www.ebay.com/itm/TFT-SD-Shield-for-Arduino-DUE-TFT-LCD-Module-SD-Card-Adapter-2-8-3-2-inch-Mega-/121057447668
D0-D15 data bus connection is like the CTE shield schematic on the Due board - directly to the board without shield.
Then
- i used the sketch UTFT_Demo_800x480.ino and UTFT_CPLD_PageSwitching examples
- uncomment "#define CTE_DUE_SHIELD 1" in the HW_ARM_defines.h in the \hardware\arm folder of the UTFT library
- changed the pinout to : UTFT myGLCD(CTE50,25,26,27,28);
UTFT myGLCD(CPLD,25,26,27,28);
UTFT myGLCD(EHOUSE50CPLD,25,26,27,28);
- power supply to arduino due USB programming cable.
Nothing - i can only change the LCD backlight - CPLD PWM -- between 0-16 you can change by writing "myGLCD.setBrightness(2); "
only with UTFT myGLCD(CPLD,25,26,27,28); and UTFT myGLCD(EHOUSE50CPLD,25,26,27,28);
Finally Second i that Elechouse shield . i used only schematic connection of the shield. i dont have one
http://www.elechouse.com/elechouse/index.php?main_page=product_info&cPath=148_211&products_id=2238
D0-D15 data bus connection is like the Elechouse shield schematic on the Due board - directly to the board without shield.
Then
the sketch UTFT_Demo_800x480.ino
3) uncomment "#define EHOUSE_DUE_SHIELD 1" in the HW_ARM_defines.h in the \hardware\arm folder of the UTFT library
4) changed the pinout to : UTFT myGLCD(EHOUSE50CPLD,22,23,31,33);
UTFT myGLCD(CPLD,22,23,31,33);
Nothing - i can only change the LCD backlight - CPLD PWM -- between 0-16 you can change by writing "myGLCD.setBrightness(2); "
again.
I have to use this CPLD solution .
Thanks
Serkan