Hallo Zusammen,
ich versuche seit Tagen Tasmota_Display auf diesen Display zu laufen zu bekommen.
Ich kann es darauf laden, allerdings bleibt das Display schwarz.
Daraufhin habe ich es mal manuell ohne tasmota mit platformIO geflashed, allerdings bekomme ich es hier nicht hin tasmota32 zu compilieren.
Hat jemand eine Idee wie man dieses Display mit Tasmota flashen kann?
So nebenbei, ich konnte das Display mit folgenden Arduino Programm ansprechen.
Dazu musste ich folgende Einstellung verwenden und auch die Libary https://github.com/Bodmer/TFT_eSPI nutzen.
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:ttgo-lora32-v1]
platform = espressif32
board = ttgo-lora32-v1
framework = arduino
lib_deps = bodmer/TFT_eSPI@^2.4.79
Alles anzeigen
Mit dem Programm ging es dann und ich konnte "Hello World xxx" sehen:
#include <TFT_eSPI.h> // Graphics and font library for ST7735 driver chip
#include <SPI.h>
TFT_eSPI tft = TFT_eSPI(); // Invoke library, pins defined in User_Setup.h
void setup(void) {
tft.init();
tft.setRotation(1);
tft.fillScreen(TFT_BLACK);
tft.drawString("Hello World xxx",30,30,2);
}
void loop() {
// put your main code here, to run repeatedly:
}
Alles anzeigen
Wird dieses Display denn überhaupt unterstützt? laut der Info ist es ein Display vom Typ : ST7789V 1.14 Zoll
Diesen Typ findet man in der Auflistung von Tasmota

und ich habe auch dieses Template versucht:

In my_user_config habe ich auch mal #define USE_DISPLAY_ST7789 und #define USE_SPI einkommentiert.
Bin Dankbar über jeden Tipp wo ich vielleicht weiterkomme
Gruss
Thomas