TFTLCD-Library icon indicating copy to clipboard operation
TFTLCD-Library copied to clipboard

Arduino library for 8-bit TFT LCDs such as ILI9325, ILI9328, etc

Results 27 TFTLCD-Library issues
Sort by recently updated
recently updated
newest added

Enables TFTLCD-Library as an ESP-IDF component (with Arduino as component). This file is based on the CMakeLists.txt file in the Adafruit-GFX-Library repo.

Dear Adafruit, I added esp32 support for the 8-bit interface on the Adafruit TFT breakout board. Maybe someone will have some use of it? Anyway, thanks for your awesome products!...

I had issues using this library with the mega2560. These changes allow me to use the examples provided with a mega2560

Extend the pixelRead() function to allow reading of pixels from ILI9341. This has been tested on a Elegoo Mega2560.

Hi I'm new for arduino and I use arduino mega 2560 with tftlcd 2.4 with shield but after I test the program this code is show. C:\Users\Administrator\Documents\Arduino\libraries\TFTLCD-Library-1.0.3\Adafruit_TFTLCD.cpp:933:0: warning: "read8" redefined...

`In file included from \Arduino\libraries\Adafruit_TFTLCD_Library\Adafruit_TFTLCD.cpp:19:0: \Arduino\libraries\Adafruit_TFTLCD_Library\pin_magic.h:282:33: warning: backslash and newline separated by space #define read8inline(result) { \ ^ \Arduino\libraries\Adafruit_TFTLCD_Library\Adafruit_TFTLCD.cpp:803:0: warning: "read8" redefined #define read8(x) x=read8fn() ^ In file included from...

Re this thread: https://forums.adafruit.com/viewtopic.php?f=47&t=172915 Nothing in the preprocessor logic for Nano Every: https://github.com/arduino/ArduinoCore-megaavr/blob/268fefd7e73cae8c0a0dfc05e114079e69fd0827/boards.txt#L42 so it ends up landing here: https://github.com/adafruit/TFTLCD-Library/blob/2f917ad72bf9d2c39cb741d2435df537770e8eca/pin_magic.h#L467

Only added the hardware specific values from the SWIFT driver by Smoke And Wires

In the constructor `Adafruit_TFTLCD::Adafruit_TFTLCD(uint8_t cs, uint8_t cd, uint8_t wr, uint8_t rd, uint8_t reset)` we see the following lines of code: ``` if (reset) { digitalWrite(reset, HIGH); pinMode(reset, OUTPUT); } ```...