From ee691c0b48ab03171ce048123a8d089f0aa267e8 Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Sat, 24 Apr 2021 18:24:01 +0100 Subject: [PATCH] Add URLs to docs. --- DRIVERS.md | 6 ++++++ README.md | 9 +++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/DRIVERS.md b/DRIVERS.md index a98fe27..ecd05c3 100644 --- a/DRIVERS.md +++ b/DRIVERS.md @@ -491,6 +491,12 @@ is because the display hardware is designed in portrait mode. The color setup file transposes the `PORTRAIT` and `LANDSCAPE` constants with consequent changes to the effect of the `USD` and `REFLECT` constants. +URL's. More in `color_setup_ttgo.py` +[TTGO Product page](http://www.lilygo.cn/claprod_view.aspx?TypeId=62&Id=1274) +[Ihor Nehrutsa's PR](https://github.com/peterhinch/micropython-nano-gui/pull/8) +[Another MicroPython driver](https://github.com/jikegong/TTGO-Esp32-ST7789-Display-MicroPython/blob/2ed1816c41f25c8993038c35ef40b2efeb225dcc/st7789.py) +[Factory test (C)](https://github.com/Xinyuan-LilyGO/TTGO-T-Display/blob/master/TFT_eSPI/examples/FactoryTest/FactoryTest.ino) + ###### [Contents](./DRIVERS.md#contents) # 4. Drivers for sharp displays diff --git a/README.md b/README.md index af9602a..12d582e 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,8 @@ my GUI's employ the American spelling of `color`. ## 1.1 Change log -26 Mar 2021 Add ST7789. Alter uasyncio support on ili9341. +24 Apr 2021 Support TTGO T-Display. +26 Mar 2021 Add ST7789. Alter uasyncio support on ili9341. 14 Mar 2021 Tested on Pi Pico. 17 Jan 2021 Add ePaper drivers. Ensure monochrome and color setup requirements are @@ -151,9 +152,10 @@ Compatible and tested display drivers include: * Drivers for Adafruit ST7735R based TFT's: [1.8 inch](https://www.adafruit.com/product/358) and [1.44 inch](https://www.adafruit.com/product/2088) documented [here](./DRIVERS.md#4-drivers-for-st7735r). - * Drivers for Adafruit ST7789 TFT's: + * Drivers for Adafruit ST7789 TFT's and TTGO T-Display ESP32 with TFT display: [1.3 inch](https://www.adafruit.com/product/4313) and [1.54 inch](https://www.adafruit.com/product/3787). +[TTGO Product page](http://www.lilygo.cn/claprod_view.aspx?TypeId=62&Id=1274) * Drivers for ILI9341 such as [Adafruit 3.2 inch](https://www.adafruit.com/product/1743) documented [here](./DRIVERS.md#5-drivers-for-ili9341). * [Adafruit 2.9 inch ePaper display](https://www.adafruit.com/product/4262) @@ -333,6 +335,9 @@ copied to the hardware root as `color_setup.py`. Example files: * `epd29_sync.py` Adafruit 2.9 inch ePaper display for synchronous code. * `epd29_async.py` Adafruit 2.9 inch ePaper display: `uasyncio` applications. +The setup file for the TTGO T-Display is located with the ST7789 driver. See +the [Driver doc: ST7789](./DRIVERS.md#33-drivers-for-st7789). + ## 2.2 Dependencies The source tree now includes all dependencies. These are listed to enable users