-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLovyan_Touch_Test.ino
183 lines (149 loc) · 8.15 KB
/
Lovyan_Touch_Test.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include <LovyanGFX.hpp>
// Modified version of : Arduino\libraries\LovyanGFX\examples\Lovyan_user_setting.ino
// Also modified is : Arduino\libraries\LovyanGFX\src\lgfx\v1\LGFXBase.cpp ( LGFX_Device::calibrate_touch )
// Serial monitor shows now the calibration data, if you call display.setTouchCalibrate(calData);
// Create a class that does your own settings, derived from LGFX_Device.
class LGFX : public lgfx::LGFX_Device
{
lgfx::Panel_ILI9341 _panel_instance;
lgfx::Bus_SPI _bus_instance;
lgfx::Touch_XPT2046 _touch_instance;
public:
LGFX(void)
{
{ // Configure bus control settings.
auto cfg = _bus_instance.config(); // Get the structure for the bus configuration.
// SPI bus configuration
cfg.spi_host = VSPI_HOST; // Select the SPI to use ESP32-S2,C3 : SPI2_HOST or SPI3_HOST / ESP32 : VSPI_HOST or HSPI_HOST
// * Due to the ESP-IDF version upgrade, VSPI_HOST and HSPI_HOST descriptions are deprecated, so if an error occurs, use SPI2_HOST and SPI3_HOST instead.
cfg.spi_mode = 0; // Set SPI communication mode (0 ~ 3)
cfg.freq_write = 40000000; // 80000000 // SPI clock frequency when sending (max 80MHz, rounded to 80MHz divided by an integer)
cfg.freq_read = 16000000; // SPI clock frequency when receiving
cfg.spi_3wire = true; // Set true if receiving on the MOSI
cfg.use_lock = true; // set true to use transaction
cfg.dma_channel = SPI_DMA_CH_AUTO; // Set the DMA channel to use (0=not use DMA / 1=1ch / 2=ch / SPI_DMA_CH_AUTO=auto setting)
// * With the ESP-IDF version upgrade, SPI_DMA_CH_AUTO (automatic setting) is recommended for the DMA channel. Specifying 1ch and 2ch is deprecated.
cfg.pin_sclk = 18; // SPI SCLK
cfg.pin_mosi = 23; // SPI MOSI
cfg.pin_miso = 19; // SPI MISO (-1 = disable)
cfg.pin_dc = 2; // SPI D/C = A0 (-1 = disable)
// When using the same SPI bus as the SD card, be sure to set MISO without omitting it.
_bus_instance.config(cfg);
_panel_instance.setBus(&_bus_instance);
}
{ // Set display panel controls.
auto cfg = _panel_instance.config();
cfg.pin_cs = 15; // CS (-1 = disable)
cfg.pin_rst = -1; // RST (-1 = disable)
cfg.pin_busy = -1; // BUSY (-1 = disable)
// * The following setting values are general initial values for each panel, so please try commenting out any unknown items.
cfg.panel_width = 240; // actual displayable width
cfg.panel_height = 320; // actual displayable height
cfg.offset_x = 0; // Panel offset in X
cfg.offset_y = 0; // Panel offset in Y
cfg.offset_rotation = 2; // Rotation value offset 0~7 (4~7 are upside down
cfg.dummy_read_pixel = 8; // Number of dummy read bits before pixel read
cfg.dummy_read_bits = 1; // Number of dummy read bits before non-pixel data read
cfg.readable = true; // Data can be read set to true
cfg.invert = false; // if panel light and dark are inverted set to true
cfg.rgb_order = false; // if panel red and blue are reversed set to true
cfg.dlen_16bit = false; // Set to true for panels that transmit data length in 16-bit units with 16-bit parallel or SPI
cfg.bus_shared = true; // If the bus is shared with the SD card, set to true (bus control with drawJpgFile etc.)
// Please set below only with drivers that can change the number of pixels such as ST7735 and ILI9163.
// Please set the following only when the display shifts with a driver with a variable number of pixels such as ST7735 or ILI9163.
//cfg.memory_width = 240; // Maximum width supported by the driver IC
//cfg.memory_height = 320; // Maximum height supported by the driver IC
_panel_instance.config(cfg);
}
{ // Configure settings for touch screen control. (delete if not necessary)
auto cfg = _touch_instance.config();
// numbers for x_min etc. doesn't work
cfg.x_min = 340; // Minimum X value (raw value) obtained from the touchscreen
cfg.x_max = 3900; // Maximum X value (raw value) obtained from the touchscreen
cfg.y_min = 235; // Minimum Y value obtained from touchscreen (raw value)
cfg.y_max = 3900; // Maximum Y value (raw value) obtained from touchscreen
cfg.pin_int = -1; // Pin number to which INT is connected (-1 = not connected)
cfg.bus_shared = true; // Set true when using a common bus with the screen
cfg.offset_rotation = 0; // Adjustment when the orientation does not match Set with a value from 0 to 7
//cfg.offset_rotation = 6; // 6 fits but double lines. why?
// For SPI connection
cfg.spi_host = VSPI_HOST; // Select SPI to use (HSPI_HOST or VSPI_HOST)
cfg.freq = 2500000; // SPI Clock frequency 1000000 -> 2500000
cfg.pin_sclk = 18; // SCLK
cfg.pin_mosi = 23; // MOSI
cfg.pin_miso = 19; // MISO
cfg.pin_cs = 4; // CS
_touch_instance.config(cfg);
_panel_instance.setTouch(&_touch_instance);
}
setPanel(&_panel_instance);
}
};
// Create an instance of the prepared class.
LGFX display;
void setup(void)
{
Serial.begin(115200);
// Enabled after SPI bus and panel initialization.
display.init();
display.setTextSize((std::max(display.width(), display.height()) + 255) >> 8);
display.setRotation(0);
display.drawString("Top left", 10, 10);
// Calibrate if touch is enabled. (Optional)
if (display.touch())
{
if (display.width() < display.height()) display.setRotation(display.getRotation() ^ 1);
// Draw the guidance text on the screen.
display.setTextDatum(textdatum_t::middle_center);
display.drawString("touch the arrow.", display.width()>>1, display.height() >> 1);
display.setTextDatum(textdatum_t::top_left);
// If using touch, calibrate. Touch the tips of the arrows displayed in the four corners of the screen in order.
std::uint16_t fg = TFT_WHITE;
std::uint16_t bg = TFT_BLACK;
if (display.isEPD()) std::swap(fg, bg);
//display.calibrateTouch(nullptr, fg, bg, std::max(display.width(), display.height()) >> 3);
// Calibration data with modified Arduino\libraries\LovyanGFX\src\lgfx\v1\LGFXBase.cpp
// Serial monitor shows now calibration data
//...
//panel()->setCalibrate(orig);
//setRotation(rot);
//Serial.print("Calibration data : ");
//for (int j=0; j < 8; j++) {
// Serial.print(orig[j]);
// Serial.print(", ");
//}
//Serial.println("done");
//...
//Calibration data for offset_rotation of the panel = 2 and offset_rotation of the touch = 0 (?)
//Calibration data : 3874, 365, 3823, 3882, 328, 361, 275, 3898, done
//Calibration data : 3863, 376, 3837, 3922, 293, 378, 247, 3930, done
//Calibration data : 3874, 385, 3870, 3948, 256, 357, 223, 3913, done
//Calibration data : 3896, 350, 3868, 3957, 280, 354, 216, 3925, done
}
uint16_t calData[8] = {3890, 340, 3900, 3895, 235, 340, 235, 3900};
display.setTouchCalibrate(calData);
display.fillScreen(TFT_BLACK);
}
uint32_t count = ~0;
void loop(void)
{
display.startWrite();
display.setRotation(++count & 7);
//display.setColorDepth((count & 8) ? 16 : 24);
//display.setColorDepth( 16 );
display.setTextColor(TFT_WHITE);
display.drawNumber(display.getRotation(), 16, 2);
display.setTextColor(0xFF0000U);
display.drawString("R", 30, 16);
display.setTextColor(0x00FF00U);
display.drawString("G", 40, 16);
display.setTextColor(0x0000FFU);
display.drawString("B", 50, 16);
display.drawRect(30,30,display.width()-60,display.height()-60, 0x00FF00U);
display.drawFastHLine(0, 0, 10);
display.endWrite();
int32_t x, y;
if (display.getTouch(&x, &y)) {
display.fillRect(x, y, 1, 1, 0xFFFFFFU);
}
}