3.2" TFT LCD Touch Shield for Arduino doesnt work with due

ivanseidel:
Manualy configure the OUTPUT PINS
pinMode(CS, OUTPUT)...
Do that for all pins AFTER initializing =]
(Had the same problem, and took me 72hours without sleeping to figure out it)

Hello ivanseidel,

I tried it and it works fine !

// Setup the LCD
  myGLCD.InitLCD();
// add support to ITead shields
  pinMode(38, OUTPUT);
  pinMode(39, OUTPUT);
  pinMode(40, OUTPUT);
  pinMode(41, OUTPUT);

Thank you very very much ! :slight_smile:

Bye,
X.