35 lines
		
	
	
		
			819 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			819 B
		
	
	
	
		
			C
		
	
	
	
| // Change the width and height if required (defined in portrait mode)
 | |
| // or use the constructor to over-ride defaults
 | |
| #ifndef TFT_WIDTH
 | |
|   #define TFT_WIDTH  240
 | |
| #endif
 | |
| #ifndef TFT_HEIGHT
 | |
|   #define TFT_HEIGHT 320
 | |
| #endif
 | |
| 
 | |
| // Delay between some initialisation commands
 | |
| #define TFT_INIT_DELAY 0x80
 | |
| 
 | |
| // 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   0x00 //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
 |