I'm very confused how to wire this display to my Arduino Mega 2560. I found code below, but I'm not sure what is what due to different labeling. Adafruit's tutorial for similar display is for UNO and Mega is mentioned vaguely.
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7735.h> // Hardware-specific library
#include <SPI.h>
#define sclk 13
#define mosi 11
#define cs 53
#define dc 8
#define rst 0
...
Adafruit_ST7735 tft = Adafruit_ST7735(cs, dc, mosi, sclk, rst);
GND GND
VCC +5V
RESET 0 (?)
AO 8 (?)
SDA 20-SDA (?)
SCK 21-SCL (?)
CS 53-CS (?)
SCK_SD 52-SCK (?)
MISO_SD 50-MISO (?)
MOSI_SD 51-MOSI (?)
CS_SD 4 (?)
LED+ +5V (?)
LED- GND (?)
At first, I want to test TFT. The SD slot at last.