UnforeseenOcean / DRGDice

A digital dice for Deep Rock Galactic (the board game) and Dungeons and Dragons
0 stars 1 forks source link

MCUFRIEND 2.4 inch display modules - Completely unusable touch panel #3

Closed UnforeseenOcean closed 2 years ago

UnforeseenOcean commented 2 years ago

MCUFRIEND (and its clones) displays have a different touch panel which throws everything off the calibrated (with a large enough hitbox to correct for the different panels) values, based on Simkeim or "SPIFLASH" display modules. The menu values should be reconfigured to account for this.

UnforeseenOcean commented 2 years ago

Fixed - Change line 163 of SPFD5408_TouchScreen.cpp from:

return TSPoint(x, 1023 - y, z);

To:

return TSPoint(1023 - x, y, z);