Files
TFT_eSPI/User_Setup_Select.h
T

123 lines
5.8 KiB
C
Raw Normal View History

2017-02-22 03:07:17 +00:00
// This header file contains a list of user setup files and defines which one the
2018-02-09 21:52:26 +00:00
// compiler uses when the IDE performs a Verify/Compile or Upload.
2017-02-22 03:07:17 +00:00
//
2018-02-09 21:52:26 +00:00
// Users can create configurations for different Espressif boards and TFT displays.
2017-02-22 03:07:17 +00:00
// This makes selecting between hardware setups easy by "uncommenting" one line.
// The advantage of this hardware configuration method is that the examples provided
// with the library should work with different setups immediately without any other
2017-03-24 23:23:35 +00:00
// changes being needed. It also improves the portability of users sketches to other
2017-02-22 03:07:17 +00:00
// hardware configurations and compatible libraries.
//
2018-02-24 19:02:20 +00:00
// Create a shortcut to this file on your desktop to permit quick access for editing.
2017-02-22 03:07:17 +00:00
// Re-compile and upload after making and saving any changes to this file.
2017-02-22 10:04:26 +00:00
// Customised User_Setup files are stored in the "User_Setups" folder.
2017-02-22 03:07:17 +00:00
2018-04-02 02:53:42 +01:00
#ifndef USER_SETUP_LOADED // Lets PlatformIO users define settings in
// platformio.ini, see notes in "Tools" folder.
// Only ONE line below should be uncommented. Add extra lines and files as needed.
2017-02-22 22:56:32 +00:00
#include <User_Setup.h> // Default setup is root library folder
2017-02-22 10:04:26 +00:00
//#include <User_Setups/Setup1_ILI9341.h> // Setup file configured for my ILI9341
//#include <User_Setups/Setup2_ST7735.h> // Setup file configured for my ST7735
//#include <User_Setups/Setup3_ILI9163.h> // Setup file configured for my ILI9163
//#include <User_Setups/Setup4_S6D02A1.h> // Setup file configured for my S6D02A1
//#include <User_Setups/Setup5_RPi_ILI9486.h> // Setup file configured for my stock RPi TFT
//#include <User_Setups/Setup6_RPi_Wr_ILI9486.h> // Setup file configured for my modified RPi TFT
2017-04-16 16:13:12 +01:00
//#include <User_Setups/Setup7_ST7735_128x128.h> // Setup file configured for my ST7735 128x128 display
2017-04-18 23:15:59 +01:00
//#include <User_Setups/Setup8_ILI9163_128x128.h> // Setup file configured for my ILI9163 128x128 display
2017-07-15 18:44:49 +01:00
//#include <User_Setups/Setup9_ST7735_Overlap.h> // Setup file configured for my ST7735
2018-04-02 02:53:42 +01:00
//#include <User_Setups/Setup10_RPi_touch_ILI9486.h> // Setup file configured for ESP8266 and RPi TFT with touch
//#include <User_Setups/Setup11_RPi_touch_ILI9486.h> // Setup file configured for ESP32 and RPi TFT with touch
2018-02-08 00:45:18 +00:00
//#include <User_Setups/Setup12_M5Stack.h> // Setup file for the ESP32 based M5Stack
2018-03-10 23:08:57 +00:00
//#include <User_Setups/Setup13_ILI9481_Parallel.h> // Setup file for the ESP32 with parallel bus TFT
//#include <User_Setups/Setup14_ILI9341_Parallel.h> // Setup file for the ESP32 with parallel bus TFT
//#include <User_Setups/Setup15_HX8357D.h> // Setup file configured for HX8357D (untested)
//#include <User_Setups/Setup16_ILI9488_Parallel.h> // Setup file for the ESP32 with parallel bus TFT
2018-06-01 18:26:09 +01:00
//#include <User_Setups/Setup17_ePaper.h> // Setup file for any Waveshare ePaper display
//#include <User_Setups/Setup18_ST7789.h> // Setup file configured for HX8357D (untested)
2017-02-22 10:04:26 +00:00
2018-07-07 22:41:53 +01:00
//#include <User_Setups/Setup20_ILI9488.h> // Setup file for ESP8266 and ILI9488 SPI bus TFT
//#include <User_Setups/Setup21_ILI9488.h> // Setup file for ESP32 and ILI9488 SPI bus TFT
2018-04-02 02:53:42 +01:00
//#include <User_Setups/SetupX_Template.h>
#endif // USER_SETUP_LOADED
2017-03-10 19:16:31 +00:00
/////////////////////////////////////////////////////////////////////////////////////
// //
// DON'T TINKER WITH ANY OF THE FOLLOWING LINES, THESE ADD THE TFT DRIVERS //
2017-04-16 16:13:12 +01:00
// AND ESP8266 PIN DEFINITONS THEY ARE HERE FOR BODMER'S CONVENIENCE! //
2017-03-10 19:16:31 +00:00
// //
/////////////////////////////////////////////////////////////////////////////////////
2017-03-10 19:16:31 +00:00
// Load the right driver definition - do not tinker here !
#if defined (ILI9341_DRIVER)
#include <TFT_Drivers/ILI9341_Defines.h>
#define TFT_DRIVER 0x9341
2017-03-10 19:16:31 +00:00
#elif defined (ST7735_DRIVER)
#include <TFT_Drivers/ST7735_Defines.h>
#define TFT_DRIVER 0x7735
2017-03-10 19:16:31 +00:00
#elif defined (ILI9163_DRIVER)
#include <TFT_Drivers/ILI9163_Defines.h>
#define TFT_DRIVER 0x9163
2017-03-10 19:16:31 +00:00
#elif defined (S6D02A1_DRIVER)
#include <TFT_Drivers/S6D02A1_Defines.h>
#define TFT_DRIVER 0x6D02
2017-03-24 23:23:35 +00:00
#elif defined (RPI_ILI9486_DRIVER)
#include <TFT_Drivers/ILI9486_Defines.h>
#define TFT_DRIVER 0x9486
#elif defined (ILI9486_DRIVER)
#include <TFT_Drivers/ILI9486_Defines.h>
2018-04-02 02:53:42 +01:00
#define TFT_DRIVER 0x9486
2018-03-10 23:08:57 +00:00
#elif defined (ILI9481_DRIVER)
#include <TFT_Drivers/ILI9481_Defines.h>
#define TFT_DRIVER 0x9481
2018-03-10 23:08:57 +00:00
#elif defined (ILI9488_DRIVER)
#include <TFT_Drivers/ILI9488_Defines.h>
#define TFT_DRIVER 0x9488
2018-03-10 23:08:57 +00:00
#elif defined (HX8357D_DRIVER)
#include "TFT_Drivers/HX8357D_Defines.h"
#define TFT_DRIVER 0x8357
#elif defined (EPD_DRIVER)
#include "TFT_Drivers/EPD_Defines.h"
#define TFT_DRIVER 0xE9D
2018-06-01 18:26:09 +01:00
#elif defined (ST7789_DRIVER)
#include "TFT_Drivers/ST7789_Defines.h"
#define TFT_DRIVER 0x7789
2018-04-02 02:53:42 +01:00
#elif defined (XYZZY_DRIVER) // <<<<<<<<<<<<<<<<<<<<<<<< ADD NEW DRIVER HERE
#include "TFT_Drivers/XYZZY_Defines.h"
#define TFT_DRIVER 0x0000
#else
#define TFT_DRIVER 0x0000
2017-03-10 19:16:31 +00:00
#endif
2017-04-14 15:45:40 +01:00
// These are the pins for all ESP8266 boards
// Name GPIO Function
#define PIN_D0 16 // WAKE
#define PIN_D1 5 // User purpose
#define PIN_D2 4 // User purpose
2018-07-09 10:54:05 +01:00
#define PIN_D3 0 // Low on boot means enter FLASH mode
#define PIN_D4 2 // TXD1 (must be high on boot to go to UART0 FLASH mode)
#define PIN_D5 14 // HSCLK
#define PIN_D6 12 // HMISO
#define PIN_D7 13 // HMOSI RXD2
2018-07-09 10:54:05 +01:00
#define PIN_D8 15 // HCS TXD0 (must be low on boot to enter UART0 FLASH mode)
#define PIN_D9 3 // RXD0
#define PIN_D10 1 // TXD0
2017-07-15 18:44:49 +01:00
#define PIN_MOSI 8 // SD1
#define PIN_MISO 7 // SD0
#define PIN_SCLK 6 // CLK
2018-04-11 01:03:26 +01:00
#define PIN_HWCS 0 // D3
2017-07-15 18:44:49 +01:00
#define PIN_D11 9 // SD2
#define PIN_D12 10 // SD4