There is no information in datasheet that input are 5v tolerant (adafruit lcd board contains voltage level converter) so better asume that they need to be 3.3v logic level
I just received this LCD on PCB and I think that there is no voltage level conversion ! only 10k ohm resistor on SD card lines! So I don't think that it's safe to connect this lcd to arduino directly !
Hi If You want to use hardware SPI use this definition (You can change those pins) #define cs 10 #define dc 9 #define rst 8 Adafruit_ST7735 tft = Adafruit_ST7735(cs, dc, rst);
LCD MISO goes to arduino MISO, MOSI to MOSI, SCK to SCK, CS to CS and there will be one signal left so connect it to any other pin. Like in Adafruit tutorial