how to connect different displays with different drivers? #1483
-
Hello Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
TFT_eSPI does not support that. The minimum effort solution is to have one processor per display. One processor being master and telling the others what to display, say via serial messages via I2C, or UART. Processors are so cheap and do not need to be of the same type, for example one ESP32 connected to ST7789 and RPi Pico RP2040 (or cheap STM32) based boards for the other displays. For non-WiFi boards the RP2040 ones are my favorite choice due to very large RAM and FLASH. |
Beta Was this translation helpful? Give feedback.
TFT_eSPI does not support that.
The minimum effort solution is to have one processor per display. One processor being master and telling the others what to display, say via serial messages via I2C, or UART. Processors are so cheap and do not need to be of the same type, for example one ESP32 connected to ST7789 and RPi Pico RP2040 (or cheap STM32) based boards for the other displays. For non-WiFi boards the RP2040 ones are my favorite choice due to very large RAM and FLASH.