// For the Adafruit shield, these are the default.
#define TFT_DC 27 //4
#define TFT_CS 15 //15
#define TFT_RST 33 //2
#define TFT_MISO 19 //19
#define TFT_MOSI 18 //23
#define TFT_CLK 5
// Use hardware SPI (on Uno, #13, #12, #11) and the above for CS/DC
//Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC);
// If using the breakout, change pins as desired
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_MOSI, TFT_CLK, TFT_RST, TFT_MISO);
While the wiring worked for the TFT to get a display, for some reason it only used part of the screen and I could not get the "piano" pattern to move off of the screen.
For the amount of time I was putting into figuring out this component of the system, I had to pull the plug and move this piece into version 2.