22 lines
560 B
C
22 lines
560 B
C
#define ST7735_DRIVER // sterownik ekranu
|
|
|
|
#define TFT_WIDTH 128
|
|
#define TFT_HEIGHT 160
|
|
|
|
#define TFT_RGB_ORDER TFT_RGB // jeśli kolory są dziwne, zamień na TFT_BGR
|
|
|
|
#define TFT_CS 5
|
|
#define TFT_RST 4
|
|
#define TFT_DC 2
|
|
|
|
#define TFT_MOSI 23
|
|
#define TFT_SCLK 18
|
|
|
|
#define LOAD_GLCD // domyślna czcionka 1
|
|
#define LOAD_FONT2 // mała czcionka
|
|
#define LOAD_FONT4 // średnia czcionka
|
|
#define LOAD_FONT6 // duża czcionka cyfrowa
|
|
#define LOAD_FONT7
|
|
#define LOAD_FONT8
|
|
|
|
#define SPI_FREQUENCY 27000000 // bezpieczna prędkość
|