Graphics library for NodeMCU (ESP8266), ESP32 and serial+parallel TFT displays

After figuring out the wiring (Thanx) and using your planespotter repo (and did the same modifications actually) to make it work with your graphics repo driver the display works.

Then I found out that Daniel silently updated his Planespotter repo and added touch.
Tested it, no modifications, works and ofcourse no screen but that wasn't important for testing
So I did some modifications to the Graphics library (Added some missing functions Planespotter uses like getTextBounds and a few others, lazy copied from Adafruit ) modified the sketch to make use of the Graphics library, changed some code like getWidth > widt and getHeight > height and compiled.
It compiles but when started it reboots due to some stack error.

So I took Bodmer repo, hacked in the touch part from Daniel,
That works but when touched it restarts. (TP_CS on D2 and without T_IRQ connected)
So, wired T_IRQ to D4 but didn't made any difference.

I think it's related to the touch screen since testing with only touch examples fails.
(XPT2046 touch screen according to the PCB)

To be continued