Gönderi

Arduino DUE + CTE7 CPLD 7inch Screen + Ethernet Shield + Load Image From SD

Hello,

I found out this solution by myself with an experience that I gained in a bit complicated ways. I didn’t cross anybody else who had functioned this big screen by Arduino DUE before. Even in the forum only Graham (@ghlawrence2000) helped a bit. And at the end I succeed in transfering the display from an SD card to a screen by the DUE. Plus I achieved a speedy image change with a CPLD screen.

If you want see on action: https://instagram.com/p/0cn_uUvdOO/

You can find used libraries and Source Code and RAW image sample in the following link:

Or see all files in folder (Dropbox)

Here are the materials that I used

  • Arduino DUE
  • Arduino ethernet shield (Pic: https://bit.ly/1BEKo3V )
  • 7inch CPLD + SDRAM TFT Touch Screen
  • 2gb Micro SD Card

Here is the diagram of Connection and Pin:

LCD ScreenArduino Due Pin No
DB037
DB136
DB235
DB334
DB433
DB532
DB631
DB730
DB822
DB923
DB1024
DB1125
DB1226
DB1327
DB1428
DB1529
RS46
WR47
RD3.3V Pulled high
CS44
REST45
LED_A+5V
GNDGND
3.3V+3.3V

TouchScreen | Arduino Due Pin No —————————————————————– TCLK | 40 TCS | 41 TDIN | 42 TDOUT | 49 IRQ | 38

Here is the INIT Code.

1
2
3
UTFT myGLCD(CPLD, 46, 47, 44, 45);
UTouch myTouch(40, 41, 42, 49, 38);
UTFT_SdRaw myFiles(&myGLCD);

First article published on arduino forum

Bu gönderi CC BY 4.0 lisansı altındadır.