It works!
It really does! I've used the instructions and examples from UTFT library, by Henning Karlsen, wich you can find here: Electronics - Henning Karlsen
In the downloaded zip, you will find the file "UTFT_Requirements.pdf" wich shows an pinnout example for an hypotetic TFT module. Based on that example, I used the following schemme to connect WBYJB02 to an Arduino Mega 1280 equivalent board:
TFT Arduino
DB0 D37
DB1 D36
DB2 D35
DB3 D34
DB4 D33
DB5 D32
DB6 D31
DB7 D30
DB8 D22
DB9 D23
DB10 D23
DB11 D24
DB12 D25
DB13 D26
DB14 D27
DB15 D28
RS D39
WR D40
RD VCC (3.3V)
CS D38
RESET D41
Then, I installed the UTFT library on my Arduino software and chose the demo for 320X240 TFT (AVR). Here you will have to comment out the line "UTFT myGLCD(ITDB32S,19,18,17,16);" and uncomment the corresponding line for the Arduino Mega (in case you're using it like me).
This is probably the most important part: you will have to change that line to reflect the pinnout you've chosen for RS,WR,CS and RESET. You will also need to identify the model of the model you're using. In my case, "GEEE32" worked perfectly.
The general form of that line is:
UTFT myGLCD(MODEL,RS,WR,CS,RST;
And, in my case:
UTFT myGLCD(GEEE32,39,40,38,41);
Then, you just load the example to your Arduino and it just works!
Hope this is usefull for someone.
Good luck!
Emerson