Hello,
I bought 2 screens, listed below:
http://www.aliexpress.com/snapshot/6426382178.html?orderId=65227826174470
http://www.aliexpress.com/snapshot/6422651153.html?orderId=65225167574470
Both doesn't work for some examples code, like this one:
http://tronixstuff.com/2013/04/26/tutorial-arduino-and-ili9325-colour-tft-lcd-modules/
Only thing Ive got is a white screen - from the led backlit
First of all:
If the screen is said that is 3/5V capable, can I still send data on a 5V level?
I clearly see a 3V voltage regulator (LM6206-3.0 N3) but this is only to the supply, obvuiosly not for data pins.
With a Nokia 5110 screen, I used 10Kohm resistors to lower the voltage to around 3V. Here - that doesn't work. Maybe someone know, that I should use different resistors values?
Or maybe I am just making everything wrong ? Do you have any troubleshoot tips? debugging tips?
This is my code for the 8/16 bit screen, nothing much, just an example
// UTFT_ViewFont (C)2012 Henning Karlsen
// web: http://www.henningkarlsen.com/electronics
//
// modified by John Boxall, April 2013
#include <UTFT.h>
// Declare which fonts we will be using
extern uint8_t SmallFont[];
extern uint8_t BigFont[];
extern uint8_t SevenSegNumFont[];
UTFT myGLCD(ILI9325C,19,18,17,16);
void setup()
{
myGLCD.InitLCD();
myGLCD.clrScr();
}
void loop()
{
myGLCD.setColor(255, 0, 0);
myGLCD.setBackColor(0, 0, 0);
myGLCD.setFont(BigFont);
myGLCD.print(" !\"#$%&'()*+,-./", CENTER, 0);
myGLCD.print("0123456789:;<=>?", CENTER, 16);
myGLCD.print("@ABCDEFGHIJKLMNO", CENTER, 32);
myGLCD.print("PQRSTUVWXYZ[\\]^_", CENTER, 48);
myGLCD.print("`abcdefghijklmno", CENTER, 64);
myGLCD.print("pqrstuvwxyz{|}~ ", CENTER, 80);
myGLCD.setColor(0, 255, 0);
myGLCD.setFont(SmallFont);
myGLCD.print(" !\"#$%&'()*+,-./0123456789:;<=>?", CENTER, 120);
myGLCD.print("@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_", CENTER, 132);
myGLCD.print("`abcdefghijklmnopqrstuvwxyz{|}~ ", CENTER, 144);
myGLCD.setColor(0, 0, 255);
myGLCD.setFont(SevenSegNumFont);
myGLCD.print("0123456789", CENTER, 190);
while(1) {}; // do nothing
}
If you can help me anyhow - I'd be grateful!
Filip