Added support for M5Stack
This commit is contained in:
parent
f3190fde71
commit
887310b308
|
|
@ -0,0 +1,126 @@
|
||||||
|
// Change the width and height if required (defined in portrait mode)
|
||||||
|
// or use the constructor to over-ride defaults
|
||||||
|
#define TFT_WIDTH 320
|
||||||
|
#define TFT_HEIGHT 240
|
||||||
|
|
||||||
|
|
||||||
|
// Color definitions for backwards compatibility with old sketches
|
||||||
|
// use colour definitions like TFT_BLACK to make sketches more portable
|
||||||
|
#define ILI9341_BLACK 0x0000 /* 0, 0, 0 */
|
||||||
|
#define ILI9341_NAVY 0x000F /* 0, 0, 128 */
|
||||||
|
#define ILI9341_DARKGREEN 0x03E0 /* 0, 128, 0 */
|
||||||
|
#define ILI9341_DARKCYAN 0x03EF /* 0, 128, 128 */
|
||||||
|
#define ILI9341_MAROON 0x7800 /* 128, 0, 0 */
|
||||||
|
#define ILI9341_PURPLE 0x780F /* 128, 0, 128 */
|
||||||
|
#define ILI9341_OLIVE 0x7BE0 /* 128, 128, 0 */
|
||||||
|
#define ILI9341_LIGHTGREY 0xC618 /* 192, 192, 192 */
|
||||||
|
#define ILI9341_DARKGREY 0x7BEF /* 128, 128, 128 */
|
||||||
|
#define ILI9341_BLUE 0x001F /* 0, 0, 255 */
|
||||||
|
#define ILI9341_GREEN 0x07E0 /* 0, 255, 0 */
|
||||||
|
#define ILI9341_CYAN 0x07FF /* 0, 255, 255 */
|
||||||
|
#define ILI9341_RED 0xF800 /* 255, 0, 0 */
|
||||||
|
#define ILI9341_MAGENTA 0xF81F /* 255, 0, 255 */
|
||||||
|
#define ILI9341_YELLOW 0xFFE0 /* 255, 255, 0 */
|
||||||
|
#define ILI9341_WHITE 0xFFFF /* 255, 255, 255 */
|
||||||
|
#define ILI9341_ORANGE 0xFD20 /* 255, 165, 0 */
|
||||||
|
#define ILI9341_GREENYELLOW 0xAFE5 /* 173, 255, 47 */
|
||||||
|
#define ILI9341_PINK 0xF81F
|
||||||
|
|
||||||
|
|
||||||
|
// Delay between some initialisation commands
|
||||||
|
#define TFT_INIT_DELAY 0x80 // Not used unless commandlist invoked
|
||||||
|
|
||||||
|
|
||||||
|
// Generic commands used by TFT_eSPI.cpp
|
||||||
|
#define TFT_NOP 0x00
|
||||||
|
#define TFT_SWRST 0x01
|
||||||
|
|
||||||
|
#define TFT_CASET 0x2A
|
||||||
|
#define TFT_PASET 0x2B
|
||||||
|
#define TFT_RAMWR 0x2C
|
||||||
|
|
||||||
|
#define TFT_RAMRD 0x2E
|
||||||
|
#define TFT_IDXRD 0xDD // ILI9341 only, indexed control register read
|
||||||
|
|
||||||
|
#define TFT_MADCTL 0x36
|
||||||
|
#define TFT_MAD_MY 0x80
|
||||||
|
#define TFT_MAD_MX 0x40
|
||||||
|
#define TFT_MAD_MV 0x20
|
||||||
|
#define TFT_MAD_ML 0x10
|
||||||
|
#define TFT_MAD_BGR 0x08
|
||||||
|
#define TFT_MAD_MH 0x04
|
||||||
|
#define TFT_MAD_RGB 0x00
|
||||||
|
|
||||||
|
#define TFT_INVOFF 0x20
|
||||||
|
#define TFT_INVON 0x21
|
||||||
|
|
||||||
|
|
||||||
|
// All ILI9341 specific commands some are used by init()
|
||||||
|
#define ILI9341_NOP 0x00
|
||||||
|
#define ILI9341_SWRESET 0x01
|
||||||
|
#define ILI9341_RDDID 0x04
|
||||||
|
#define ILI9341_RDDST 0x09
|
||||||
|
|
||||||
|
#define ILI9341_SLPIN 0x10
|
||||||
|
#define ILI9341_SLPOUT 0x11
|
||||||
|
#define ILI9341_PTLON 0x12
|
||||||
|
#define ILI9341_NORON 0x13
|
||||||
|
|
||||||
|
#define ILI9341_RDMODE 0x0A
|
||||||
|
#define ILI9341_RDMADCTL 0x0B
|
||||||
|
#define ILI9341_RDPIXFMT 0x0C
|
||||||
|
#define ILI9341_RDIMGFMT 0x0A
|
||||||
|
#define ILI9341_RDSELFDIAG 0x0F
|
||||||
|
|
||||||
|
#define ILI9341_INVOFF 0x20
|
||||||
|
#define ILI9341_INVON 0x21
|
||||||
|
#define ILI9341_GAMMASET 0x26
|
||||||
|
#define ILI9341_DISPOFF 0x28
|
||||||
|
#define ILI9341_DISPON 0x29
|
||||||
|
|
||||||
|
#define ILI9341_CASET 0x2A
|
||||||
|
#define ILI9341_PASET 0x2B
|
||||||
|
#define ILI9341_RAMWR 0x2C
|
||||||
|
#define ILI9341_RAMRD 0x2E
|
||||||
|
|
||||||
|
#define ILI9341_PTLAR 0x30
|
||||||
|
#define ILI9341_VSCRDEF 0x33
|
||||||
|
#define ILI9341_MADCTL 0x36
|
||||||
|
#define ILI9341_VSCRSADD 0x37
|
||||||
|
#define ILI9341_PIXFMT 0x3A
|
||||||
|
|
||||||
|
#define ILI9341_WRDISBV 0x51
|
||||||
|
#define ILI9341_RDDISBV 0x52
|
||||||
|
#define ILI9341_WRCTRLD 0x53
|
||||||
|
|
||||||
|
#define ILI9341_FRMCTR1 0xB1
|
||||||
|
#define ILI9341_FRMCTR2 0xB2
|
||||||
|
#define ILI9341_FRMCTR3 0xB3
|
||||||
|
#define ILI9341_INVCTR 0xB4
|
||||||
|
#define ILI9341_DFUNCTR 0xB6
|
||||||
|
|
||||||
|
#define ILI9341_PWCTR1 0xC0
|
||||||
|
#define ILI9341_PWCTR2 0xC1
|
||||||
|
#define ILI9341_PWCTR3 0xC2
|
||||||
|
#define ILI9341_PWCTR4 0xC3
|
||||||
|
#define ILI9341_PWCTR5 0xC4
|
||||||
|
#define ILI9341_VMCTR1 0xC5
|
||||||
|
#define ILI9341_VMCTR2 0xC7
|
||||||
|
|
||||||
|
#define ILI9341_RDID4 0xD3
|
||||||
|
#define ILI9341_RDINDEX 0xD9
|
||||||
|
#define ILI9341_RDID1 0xDA
|
||||||
|
#define ILI9341_RDID2 0xDB
|
||||||
|
#define ILI9341_RDID3 0xDC
|
||||||
|
#define ILI9341_RDIDX 0xDD // TBC
|
||||||
|
|
||||||
|
#define ILI9341_GMCTRP1 0xE0
|
||||||
|
#define ILI9341_GMCTRN1 0xE1
|
||||||
|
|
||||||
|
#define ILI9341_MADCTL_MY 0x80
|
||||||
|
#define ILI9341_MADCTL_MX 0x40
|
||||||
|
#define ILI9341_MADCTL_MV 0x20
|
||||||
|
#define ILI9341_MADCTL_ML 0x10
|
||||||
|
#define ILI9341_MADCTL_RGB 0x00
|
||||||
|
#define ILI9341_MADCTL_BGR 0x08
|
||||||
|
#define ILI9341_MADCTL_MH 0x04
|
||||||
|
|
@ -0,0 +1,119 @@
|
||||||
|
|
||||||
|
// This is the command sequence that initialises the ILI9341 driver
|
||||||
|
//
|
||||||
|
// This setup information uses simple 8 bit SPI writecommand() and writedata() functions
|
||||||
|
//
|
||||||
|
// See ST7735_Setup.h file for an alternative format
|
||||||
|
|
||||||
|
{
|
||||||
|
writecommand(0xEF);
|
||||||
|
writedata(0x03);
|
||||||
|
writedata(0x80);
|
||||||
|
writedata(0x02);
|
||||||
|
|
||||||
|
writecommand(0xCF);
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0XC1);
|
||||||
|
writedata(0X30);
|
||||||
|
|
||||||
|
writecommand(0xED);
|
||||||
|
writedata(0x64);
|
||||||
|
writedata(0x03);
|
||||||
|
writedata(0X12);
|
||||||
|
writedata(0X81);
|
||||||
|
|
||||||
|
writecommand(0xE8);
|
||||||
|
writedata(0x85);
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0x78);
|
||||||
|
|
||||||
|
writecommand(0xCB);
|
||||||
|
writedata(0x39);
|
||||||
|
writedata(0x2C);
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0x34);
|
||||||
|
writedata(0x02);
|
||||||
|
|
||||||
|
writecommand(0xF7);
|
||||||
|
writedata(0x20);
|
||||||
|
|
||||||
|
writecommand(0xEA);
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0x00);
|
||||||
|
|
||||||
|
writecommand(ILI9341_PWCTR1); //Power control
|
||||||
|
writedata(0x23); //VRH[5:0]
|
||||||
|
|
||||||
|
writecommand(ILI9341_PWCTR2); //Power control
|
||||||
|
writedata(0x10); //SAP[2:0];BT[3:0]
|
||||||
|
|
||||||
|
writecommand(ILI9341_VMCTR1); //VCM control
|
||||||
|
writedata(0x3e);
|
||||||
|
writedata(0x28);
|
||||||
|
|
||||||
|
writecommand(ILI9341_VMCTR2); //VCM control2
|
||||||
|
writedata(0x86); //--
|
||||||
|
|
||||||
|
writecommand(ILI9341_MADCTL); // Memory Access Control
|
||||||
|
writedata(0x08);
|
||||||
|
|
||||||
|
writecommand(ILI9341_PIXFMT);
|
||||||
|
writedata(0x55);
|
||||||
|
|
||||||
|
writecommand(ILI9341_FRMCTR1);
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0x13); // 0x18 79Hz, 0x1B default 70Hz, 0x13 100Hz
|
||||||
|
|
||||||
|
writecommand(ILI9341_DFUNCTR); // Display Function Control
|
||||||
|
writedata(0x08);
|
||||||
|
writedata(0x82);
|
||||||
|
writedata(0x27);
|
||||||
|
|
||||||
|
writecommand(0xF2); // 3Gamma Function Disable
|
||||||
|
writedata(0x00);
|
||||||
|
|
||||||
|
writecommand(ILI9341_GAMMASET); //Gamma curve selected
|
||||||
|
writedata(0x01);
|
||||||
|
|
||||||
|
writecommand(ILI9341_GMCTRP1); //Set Gamma
|
||||||
|
writedata(0x0F);
|
||||||
|
writedata(0x31);
|
||||||
|
writedata(0x2B);
|
||||||
|
writedata(0x0C);
|
||||||
|
writedata(0x0E);
|
||||||
|
writedata(0x08);
|
||||||
|
writedata(0x4E);
|
||||||
|
writedata(0xF1);
|
||||||
|
writedata(0x37);
|
||||||
|
writedata(0x07);
|
||||||
|
writedata(0x10);
|
||||||
|
writedata(0x03);
|
||||||
|
writedata(0x0E);
|
||||||
|
writedata(0x09);
|
||||||
|
writedata(0x00);
|
||||||
|
|
||||||
|
writecommand(ILI9341_GMCTRN1); //Set Gamma
|
||||||
|
writedata(0x00);
|
||||||
|
writedata(0x0E);
|
||||||
|
writedata(0x14);
|
||||||
|
writedata(0x03);
|
||||||
|
writedata(0x11);
|
||||||
|
writedata(0x07);
|
||||||
|
writedata(0x31);
|
||||||
|
writedata(0xC1);
|
||||||
|
writedata(0x48);
|
||||||
|
writedata(0x08);
|
||||||
|
writedata(0x0F);
|
||||||
|
writedata(0x0C);
|
||||||
|
writedata(0x31);
|
||||||
|
writedata(0x36);
|
||||||
|
writedata(0x0F);
|
||||||
|
|
||||||
|
writecommand(ILI9341_SLPOUT); //Exit Sleep
|
||||||
|
|
||||||
|
spi_end();
|
||||||
|
delay(120);
|
||||||
|
spi_begin();
|
||||||
|
|
||||||
|
writecommand(ILI9341_DISPON); //Display on
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,50 @@
|
||||||
|
|
||||||
|
// This is the command sequence that rotates the ILI9341 driver coordinate frame
|
||||||
|
|
||||||
|
rotation = m % 8; // Limit the range of values to 0-7
|
||||||
|
|
||||||
|
writecommand(TFT_MADCTL);
|
||||||
|
switch (rotation) {
|
||||||
|
case 0:
|
||||||
|
writedata(TFT_MAD_BGR);
|
||||||
|
_width = _width_orig;
|
||||||
|
_height = _height_orig;
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
writedata(TFT_MAD_MY | TFT_MAD_MV | TFT_MAD_BGR);
|
||||||
|
_width = _height_orig;
|
||||||
|
_height = _width_orig;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
writedata(TFT_MAD_MX | TFT_MAD_MY | TFT_MAD_BGR);
|
||||||
|
_width = _width_orig;
|
||||||
|
_height = _height_orig;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
writedata(TFT_MAD_MV | TFT_MAD_MX | TFT_MAD_BGR);
|
||||||
|
_width = _height_orig;
|
||||||
|
_height = _width_orig;
|
||||||
|
break;
|
||||||
|
// These next rotations are for bottum up BMP drawing
|
||||||
|
case 4:
|
||||||
|
writedata(TFT_MAD_MV | TFT_MAD_BGR);
|
||||||
|
_width = _width_orig;
|
||||||
|
_height = _height_orig;
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
writedata(TFT_MAD_MV | TFT_MAD_MX | TFT_MAD_BGR);
|
||||||
|
_width = _height_orig;
|
||||||
|
_height = _width_orig;
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
writedata(TFT_MAD_MY | TFT_MAD_BGR);
|
||||||
|
_width = _width_orig;
|
||||||
|
_height = _height_orig;
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
writedata(TFT_MAD_MX | TFT_MAD_MY | TFT_MAD_MV | TFT_MAD_BGR);
|
||||||
|
_width = _height_orig;
|
||||||
|
_height = _width_orig;
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
11
TFT_eSPI.cpp
11
TFT_eSPI.cpp
|
|
@ -105,6 +105,11 @@ TFT_eSPI::TFT_eSPI(int16_t w, int16_t h)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef TFT_LED
|
||||||
|
digitalWrite(TFT_LED, HIGH);
|
||||||
|
pinMode(TFT_LED, OUTPUT);
|
||||||
|
#endif
|
||||||
|
|
||||||
_width_orig = _width = w; // Set by specific xxxxx_Defines.h file or by users sketch
|
_width_orig = _width = w; // Set by specific xxxxx_Defines.h file or by users sketch
|
||||||
_height_orig = _height = h; // Set by specific xxxxx_Defines.h file or by users sketch
|
_height_orig = _height = h; // Set by specific xxxxx_Defines.h file or by users sketch
|
||||||
rotation = 0;
|
rotation = 0;
|
||||||
|
|
@ -256,6 +261,9 @@ void TFT_eSPI::init(void)
|
||||||
#if defined (ILI9341_DRIVER)
|
#if defined (ILI9341_DRIVER)
|
||||||
#include "TFT_Drivers/ILI9341_Init.h"
|
#include "TFT_Drivers/ILI9341_Init.h"
|
||||||
|
|
||||||
|
#elif defined (M5STACK_DRIVER)
|
||||||
|
#include "TFT_Drivers/M5Stack_Init.h"
|
||||||
|
|
||||||
#elif defined (ST7735_DRIVER)
|
#elif defined (ST7735_DRIVER)
|
||||||
#include "TFT_Drivers/ST7735_Init.h"
|
#include "TFT_Drivers/ST7735_Init.h"
|
||||||
|
|
||||||
|
|
@ -289,6 +297,9 @@ void TFT_eSPI::setRotation(uint8_t m)
|
||||||
#if defined (ILI9341_DRIVER)
|
#if defined (ILI9341_DRIVER)
|
||||||
#include "TFT_Drivers/ILI9341_Rotation.h"
|
#include "TFT_Drivers/ILI9341_Rotation.h"
|
||||||
|
|
||||||
|
#elif defined (M5STACK_DRIVER)
|
||||||
|
#include "TFT_Drivers/M5Stack_Rotation.h"
|
||||||
|
|
||||||
#elif defined (ST7735_DRIVER)
|
#elif defined (ST7735_DRIVER)
|
||||||
#include "TFT_Drivers/ST7735_Rotation.h"
|
#include "TFT_Drivers/ST7735_Rotation.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@
|
||||||
//#include <User_Setups/Setup9_ST7735_Overlap.h> // Setup file configured for my ST7735
|
//#include <User_Setups/Setup9_ST7735_Overlap.h> // Setup file configured for my ST7735
|
||||||
//#include <User_Setups/Setup10_RPi_touch_ILI9486.h> // Setup file configured for my stock RPi TFT with touch
|
//#include <User_Setups/Setup10_RPi_touch_ILI9486.h> // Setup file configured for my stock RPi TFT with touch
|
||||||
//#include <User_Setups/Setup11_RPi_touch_ILI9486.h> // Setup file configured for my stock RPi TFT with touch
|
//#include <User_Setups/Setup11_RPi_touch_ILI9486.h> // Setup file configured for my stock RPi TFT with touch
|
||||||
|
//#include <User_Setups/M5Stack_Setup.h> // Setup file configured for M5Stack
|
||||||
|
|
||||||
//#include <User_Setups/SetupX_Template.h> // Setup file template for copying/editting
|
//#include <User_Setups/SetupX_Template.h> // Setup file template for copying/editting
|
||||||
|
|
||||||
|
|
@ -51,6 +52,8 @@
|
||||||
// Load the right driver definition - do not tinker here !
|
// Load the right driver definition - do not tinker here !
|
||||||
#if defined (ILI9341_DRIVER)
|
#if defined (ILI9341_DRIVER)
|
||||||
#include <TFT_Drivers/ILI9341_Defines.h>
|
#include <TFT_Drivers/ILI9341_Defines.h>
|
||||||
|
#elif defined (M5STACK_DRIVER)
|
||||||
|
#include <TFT_Drivers/M5Stack_Defines.h>
|
||||||
#elif defined (ST7735_DRIVER)
|
#elif defined (ST7735_DRIVER)
|
||||||
#include <TFT_Drivers/ST7735_Defines.h>
|
#include <TFT_Drivers/ST7735_Defines.h>
|
||||||
#elif defined (ILI9163_DRIVER)
|
#elif defined (ILI9163_DRIVER)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,187 @@
|
||||||
|
// USER DEFINED SETTINGS
|
||||||
|
// Set driver type, fonts to be loaded, pins used and SPI control method etc
|
||||||
|
//
|
||||||
|
// See the User_Setup_Select.h file if you wish to be able to define multiple
|
||||||
|
// setups and then easily select which setup file is used by the compiler.
|
||||||
|
//
|
||||||
|
// If this file is editted correctly then all the library example sketches should
|
||||||
|
// run without the need to make any more changes for a particular hardware setup!
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 0. Call up the right driver file and any options for it
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
// Only define one driver, the other ones must be commented out
|
||||||
|
#define M5STACK_DRIVER
|
||||||
|
//#define ILI9341_DRIVER
|
||||||
|
//#define ST7735_DRIVER
|
||||||
|
//#define ILI9163_DRIVER
|
||||||
|
//#define S6D02A1_DRIVER
|
||||||
|
//#define RPI_ILI9486_DRIVER // 20MHz maximum SPI
|
||||||
|
|
||||||
|
// For ST7735 ONLY, define the type of display, originally this was based on the
|
||||||
|
// colour of the tab on the screen protector film but this is not always true, so try
|
||||||
|
// out the different options below if the screen does not display graphics correctly,
|
||||||
|
// e.g. colours wrong, mirror images, or tray pixels at the edges.
|
||||||
|
// Comment out ALL BUT ONE of these options for a ST7735 display driver, save this
|
||||||
|
// this User_Setup file, then rebuild and upload the sketch to the board again:
|
||||||
|
|
||||||
|
//#define ST7735_INITB
|
||||||
|
//#define ST7735_GREENTAB
|
||||||
|
//#define ST7735_GREENTAB2
|
||||||
|
//#define ST7735_GREENTAB3
|
||||||
|
//#define ST7735_GREENTAB128 // For 128 x 128 display
|
||||||
|
//#define ST7735_REDTAB
|
||||||
|
//#define ST7735_BLACKTAB
|
||||||
|
|
||||||
|
// For ST7735 ONLY, define the pixel width and height in portrait orientation
|
||||||
|
//#define TFT_WIDTH 128
|
||||||
|
//#define TFT_HEIGHT 160
|
||||||
|
//#define TFT_HEIGHT 128
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 1. Define the pins that are used to interface with the display here
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
// We must use hardware SPI, a minimum of 3 GPIO pins is needed.
|
||||||
|
// Typical setup for NodeMCU ESP-12 is :
|
||||||
|
//
|
||||||
|
// Display SDO/MISO to NodeMCU pin D6 (or leave disconnected if not reading TFT)
|
||||||
|
// Display LED to NodeMCU pin VIN (or 5V, see below)
|
||||||
|
// Display SCK to NodeMCU pin D5
|
||||||
|
// Display SDI/MOSI to NodeMCU pin D7
|
||||||
|
// Display DC (RS/AO)to NodeMCU pin D3
|
||||||
|
// Display RESET to NodeMCU pin D4 (or RST, see below)
|
||||||
|
// Display CS to NodeMCU pin D8 (or GND, see below)
|
||||||
|
// Display GND to NodeMCU pin GND (0V)
|
||||||
|
// Display VCC to NodeMCU 5V or 3.3V
|
||||||
|
//
|
||||||
|
// The TFT RESET pin can be connected to the NodeMCU RST pin or 3.3V to free up a control pin
|
||||||
|
//
|
||||||
|
// The DC (Data Command) pin may be labelled AO or RS (Register Select)
|
||||||
|
//
|
||||||
|
// With some displays such as the ILI9341 the TFT CS pin can be connected to GND if no more
|
||||||
|
// SPI deivces (e.g. an SD Card) are connected, in this case comment out the #define TFT_CS
|
||||||
|
// line below so it is NOT defined. Other displays such at the ST7735 require the TFT CS pin
|
||||||
|
// to be toggled during setup, so in these cases the TFT_CS line must be defined and connected.
|
||||||
|
//
|
||||||
|
// The NodeMCU D0 pin can be used for RST
|
||||||
|
//
|
||||||
|
// See Section 2. below if DC or CS is connected to D0
|
||||||
|
//
|
||||||
|
// Note: only some versions of the NodeMCU provide the USB 5V on the VIN pin
|
||||||
|
// If 5V is not available at a pin you can use 3.3V but backlight brightness
|
||||||
|
// will be lower.
|
||||||
|
|
||||||
|
// ###### EDIT THE PIN NUMBERS IN THE LINES FOLLOWING TO SUIT YOUR ESP8266 SETUP ######
|
||||||
|
|
||||||
|
// For NodeMCU - use pin numbers in the form PIN_Dx where Dx is the NodeMCU pin designation
|
||||||
|
//#define TFT_CS PIN_D8 // Chip select control pin D8
|
||||||
|
//#define TFT_DC PIN_D3 // Data Command control pin
|
||||||
|
//#define TFT_RST PIN_D4 // Reset pin (could connect to NodeMCU RST, see next line)
|
||||||
|
//#define TFT_RST -1 // Set TFT_RST to -1 if the display RESET is connected to NodeMCU RST or 3.3V
|
||||||
|
|
||||||
|
//#define TOUCH_CS PIN_D1 // Chip select pin (T_CS) of touch screen
|
||||||
|
|
||||||
|
//#define TFT_WR PIN_D2 // Write strobe for modified Raspberry Pi TFT only
|
||||||
|
|
||||||
|
// ###### EDIT THE PIN NUMBERS IN THE LINES FOLLOWING TO SUIT YOUR ESP32 SETUP ######
|
||||||
|
|
||||||
|
// For ESP32 Dev board (only tested with ILI9341 display)
|
||||||
|
// The hardware SPI can be mapped to any pins
|
||||||
|
|
||||||
|
|
||||||
|
#define TFT_LED 32
|
||||||
|
#define TFT_MISO 19
|
||||||
|
#define TFT_MOSI 23
|
||||||
|
#define TFT_SCLK 18
|
||||||
|
#define TFT_CS 14 // Chip select control pin
|
||||||
|
#define TFT_DC 27 // Data Command control pin
|
||||||
|
#define TFT_RST 33 // Reset pin (could connect to RST pin)
|
||||||
|
//#define TFT_RST -1 // Set TFT_RST to -1 if display RESET is connected to ESP32 board RST
|
||||||
|
|
||||||
|
//#define TOUCH_CS 21 // Chip select pin (T_CS) of touch screen
|
||||||
|
|
||||||
|
//#define TFT_WR 22 // Write strobe for modified Raspberry Pi TFT only
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 2. Define the way the DC and/or CS lines are driven (ESP8266 only)
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
// Normally the library uses direct register access for the DC and CS lines for speed
|
||||||
|
// If D0 (GPIO16) is used for CS or DC then a different slower method must be used
|
||||||
|
// Uncomment one line if D0 is used for DC or CS
|
||||||
|
// DC on D0 = 6% performance penalty at 40MHz SPI running graphics test
|
||||||
|
// CS on D0 = 2% performance penalty at 40MHz SPI running graphics test
|
||||||
|
|
||||||
|
// #define D0_USED_FOR_DC
|
||||||
|
// #define D0_USED_FOR_CS
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 3. Define the fonts that are to be used here
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
// Comment out the #defines below with // to stop that font being loaded
|
||||||
|
// The ESP8366 had plenty of memory so commenting out fonts is not normally necessary
|
||||||
|
// If all fonts are loaded the extra FLASH space required is about 17Kbytes...
|
||||||
|
// To save FLASH space only enable the fonts you need!
|
||||||
|
|
||||||
|
#define LOAD_GLCD // Font 1. Original Adafruit 8 pixel font needs ~1820 bytes in FLASH
|
||||||
|
#define LOAD_FONT2 // Font 2. Small 16 pixel high font, needs ~3534 bytes in FLASH, 96 characters
|
||||||
|
#define LOAD_FONT4 // Font 4. Medium 26 pixel high font, needs ~5848 bytes in FLASH, 96 characters
|
||||||
|
#define LOAD_FONT6 // Font 6. Large 48 pixel font, needs ~2666 bytes in FLASH, only characters 1234567890:-.apm
|
||||||
|
#define LOAD_FONT7 // Font 7. 7 segment 48 pixel font, needs ~2438 bytes in FLASH, only characters 1234567890:.
|
||||||
|
#define LOAD_FONT8 // Font 8. Large 75 pixel font needs ~3256 bytes in FLASH, only characters 1234567890:-.
|
||||||
|
#define LOAD_GFXFF // FreeFonts. Include access to the 48 Adafruit_GFX free fonts FF1 to FF48 and custom fonts
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 4. Not used
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
// ##################################################################################
|
||||||
|
//
|
||||||
|
// Section 5. Other options
|
||||||
|
//
|
||||||
|
// ##################################################################################
|
||||||
|
|
||||||
|
// Define the SPI clock frequency, this affects the graphics rendering speed. Too
|
||||||
|
// fast and the TFT driver will not keep up and display corruption appears.
|
||||||
|
// With an ILI9341 display 40MHz works OK, 80MHz sometimes fails
|
||||||
|
// With a ST7735 display more than 27MHz may not work (spurious pixels and lines)
|
||||||
|
// With an ILI9163 display 27 MHz works OK.
|
||||||
|
// The RPi typically only works at 20MHz maximum.
|
||||||
|
|
||||||
|
// #define SPI_FREQUENCY 1000000
|
||||||
|
// #define SPI_FREQUENCY 5000000
|
||||||
|
// #define SPI_FREQUENCY 10000000
|
||||||
|
// #define SPI_FREQUENCY 20000000
|
||||||
|
// #define SPI_FREQUENCY 27000000 // Actually sets it to 26.67MHz = 80/3
|
||||||
|
#define SPI_FREQUENCY 40000000 // Maximum to use SPIFFS
|
||||||
|
// #define SPI_FREQUENCY 80000000
|
||||||
|
|
||||||
|
// The XPT2046 required a lower SPI clock rate of 2.5MHz so we define that here:
|
||||||
|
#define SPI_TOUCH_FREQUENCY 2500000
|
||||||
|
|
||||||
|
|
||||||
|
// Comment out the following #define if "SPI Transactions" do not need to be
|
||||||
|
// supported. Tranaction support is required if other SPI devices are connected.
|
||||||
|
// When commented out the code size will be smaller and sketches will
|
||||||
|
// run slightly faster, so leave it commented out unless you need it!
|
||||||
|
|
||||||
|
// Transaction support is needed to work with SD library but not needed with TFT_SdFat
|
||||||
|
|
||||||
|
// Transactions are automatically enabled by the library for an ESP32 (to use HAL mutex)
|
||||||
|
// so changing it here has noo effect
|
||||||
|
|
||||||
|
// #define SUPPORT_TRANSACTIONS
|
||||||
Loading…
Reference in New Issue