You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On SPI1, main board only has one CS pin, but hacks in place to allow you
to use CS pins (and SPI1 other pins) on the sdcard socket pins.
In Graphic test, was able to use with code like:
// For the Adafruit shield, these are the default.
#define TFT_DC 0xe4
#define TFT_CS 0xe5
// Use hardware SPI (on Uno, PaulStoffregen#13, PaulStoffregen#12, PaulStoffregen#11) and the above for CS/DC
//
// Tell system to use default pins
ILI9341_t3 tft = ILI9341_t3(TFT_CS, TFT_DC, 11, 255, 255, 255);
void setup() {
Serial.begin(9600);
while (!Serial) ; // wait for Arduino Serial Monitor
Serial.println("ILI9341 Test!");
SPI1.setSCK(0xe2);
SPI1.setMISO(0xe3);
SPI1.setMOSI(0xe1);
tft.begin();
Would this library work with the ILI9340, like in this display.
The text was updated successfully, but these errors were encountered: