loopstudio
Member
So now there is only 2 problems left:
1) I cannot get any of my standalone reset methods to work. Nothing happens or it feels random if they are working. I felt I saw it working once, but it might have been something else looking like.
Method 1:
Method 2:
2) The colors are totally messed up.
black shows white
white shows black
red shows cyan
green shows purple
blue shows yellow
yellow shows blue
purple shows green
cyan shows red
So B/W is swapped and the 6 colors er swapped direction
1) I cannot get any of my standalone reset methods to work. Nothing happens or it feels random if they are working. I felt I saw it working once, but it might have been something else looking like.
Method 1:
C-like:
// Manually Reset Displays Before Initialization
pinMode(TFT_RST, OUTPUT);
digitalWrite(TFT_RST, LOW);
delay(150);
digitalWrite(TFT_RST, HIGH);
delay(150);
Method 2:
C-like:
tft1.writeCommand(TFT_RST);
tft2.writeCommand(TFT_RST);
2) The colors are totally messed up.
black shows white
white shows black
red shows cyan
green shows purple
blue shows yellow
yellow shows blue
purple shows green
cyan shows red
So B/W is swapped and the 6 colors er swapped direction