3754088a44
* Added support for H803FW controller * Create usermod_bme280.cpp * Create usermod_bme280.cpp * Added BME280 sensor * Update readme.md * Update usermod_bme280.cpp * Update platformio.ini * Update for lightweight sensor * Added travis build badge * Update readme.md * Update readme.md * Update .gitignore * Changed ldscript for a file system * Update NpbWrapper.h * Update .gitignore * Delete wled-ci.yml * Added usermod for ST7789 display Functionality tested with ESP32. Works with main WLED and @blazoncek fork. * fixes * Update .gitignore * Firmware updates!!! Updated official @Aircoookie firmware to v0.12.0-b4 build 2103290 and developer @blazoncek firmware to latest v0.12.0-b3 build 2103282. * Updated platformio.ini for Universal Wemos Shield board
39 lines
945 B
C
39 lines
945 B
C
// Setup for the ESP32 board with 1.5" 240x240 display
|
|
|
|
// See SetupX_Template.h for all options available
|
|
|
|
#define ST7789_DRIVER
|
|
#define TFT_SDA_READ // Display has a bidirectionsl SDA pin
|
|
|
|
#define TFT_WIDTH 240
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define CGRAM_OFFSET // Library will add offsets required
|
|
|
|
//#define TFT_MISO -1
|
|
|
|
#define TFT_MOSI 21
|
|
#define TFT_SCLK 22
|
|
//#define TFT_CS 5
|
|
#define TFT_DC 18
|
|
#define TFT_RST 5
|
|
|
|
#define TFT_BL 26 // Display backlight control pin
|
|
|
|
#define TFT_BACKLIGHT_ON HIGH // HIGH or LOW are options
|
|
|
|
#define LOAD_GLCD
|
|
#define LOAD_FONT2
|
|
#define LOAD_FONT4
|
|
#define LOAD_FONT6
|
|
#define LOAD_FONT7
|
|
#define LOAD_FONT8
|
|
#define LOAD_GFXFF
|
|
|
|
//#define SMOOTH_FONT
|
|
|
|
//#define SPI_FREQUENCY 27000000
|
|
#define SPI_FREQUENCY 40000000 // Maximum for ILI9341
|
|
|
|
|
|
#define SPI_READ_FREQUENCY 6000000 // 6 MHz is the maximum SPI read speed for the ST7789V
|