#include <SPI.h>
#define LCD_CS 2
#define LCD_DC 3
void setup() {
// put your setup code here, to run once:
SPI.begin();
// Set CS
pinMode(LCD_CS, OUTPUT);
pinMode(LCD_DC, OUTPUT);
// No Select
digitalWrite(LCD_CS, HIGH);
digitalWrite(LCD_DC, HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
}