TAMCTec / gt911-arduino

Arduino library for GT911
Apache License 2.0
40 stars 12 forks source link

ESP32-3248S035C issue and workaround #4

Open michalmonday opened 1 year ago

michalmonday commented 1 year ago

It seems that the ESP32-3248S035C has an issue where the capacitive touch does not work on every 2nd reset of the board. Adding "tp.reset()" before "tp.begin()" prevents the problem in my case. No idea why or how, but after spending half day pulling hairs from my head trying to fix it I thought I'll share this here.

It's worth to note that the same issue occurs with the example (called "LVGL_Arduino-3.5CTP-gt911.ino") provided in ESP32-3248S035C documentation (these can be downloaded from links listed in aliexpress ESP32-3248S035C descriptions), which does not use TAMC_GT911 library.

HowardAtHome commented 1 year ago

This appears to be the same issue as I had, sadly I spent 2 days figuring it out - see issue 7.

michalmonday commented 1 year ago

Thank you very much for that.