Allow more settle time for raw values read from touch controller

This commit is contained in:
Bodmer
2018-08-26 23:17:58 +01:00
parent 2f4c48ee72
commit a9c4351c64
3 changed files with 8 additions and 3 deletions

View File

@@ -22,8 +22,13 @@ uint8_t TFT_eSPI::getTouchRaw(uint16_t *x, uint16_t *y){
T_CS_L;
// Dummy transfer
SPI.transfer(0xd0);
SPI.transfer(0);
SPI.transfer(0);
// Start bit + YP sample request for x position
tmp = SPI.transfer(0xd0);
SPI.transfer(0xd0);
tmp = SPI.transfer(0);
tmp = tmp <<5;
tmp |= 0x1f & (SPI.transfer(0)>>3);

View File

@@ -1,6 +1,6 @@
{
"name": "TFT_eSPI",
"version": "1.0.0",
"version": "1.0.1",
"keywords": "tft, ePaper, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789",
"description": "A TFT and ePaper SPI graphics library for ESP8266 and ESP32",
"repository":

View File

@@ -1,5 +1,5 @@
name=TFT_eSPI
version=1.0.0
version=1.0.1
author=Bodmer
maintainer=Bodmer
sentence=A fast TFT library for ESP8266 processors and the Arduino IDE