#ESP32-S3 Touch LCD 2.8 mit HomeAssistant

1 messages · Page 1 of 1 (latest)

grand snow
#

Hallo zusammen, was ich auch mache, das Display ist schwarz. Folgende yaml im Einsatz: ´´´´esphome:
name: waveshare-test

Aktiviert das Licht sicher nach dem Bootvorgang

on_boot:
priority: 225
then:
- light.turn_on: display_backlight

esp32:
board: esp32-s3-devkitc-1
framework:
type: esp-idf
# ZWINGEND: Aktiviert den PSRAM für den Display-Buffer im S3 (IDF-Weg)
sdkconfig_options:
CONFIG_SPIRAM: y
CONFIG_SPIRAM_TYPE_AUTO: y
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY: y

logger:
level: INFO

api:
ota:

  • platform: esphome

wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true

spi:
clk_pin: 12
mosi_pin: 11

output:

  • platform: ledc
    pin: 45
    id: backlight_out

light:

  • platform: monochromatic
    name: "Backlight"
    output: backlight_out
    id: display_backlight
    restore_mode: ALWAYS_ON

font:

  • file: "gfonts://Roboto"
    id: font_small
    size: 20

display:

  • platform: ili9xxx
    model: ST7789V

    KORREKTUR: Dimensions müssen in einen eigenen Block

    dimensions:
    width: 240
    height: 320
    cs_pin: 10
    dc_pin: 9
    reset_pin: 14
    invert_colors: true
    rotation: 0
    lambda: |-
    it.fill(Color::BLACK);
    it.print(20, 20, id(font_small), Color::WHITE, "WAVESHARE READY");´´´
cold knotBOT
#
Rule 3

@grand snow No typing in any other language than English; we cannot moderate different languages.

#

@grand snow To format your text as code, enter three backticks on the first line, press Enter for a new line, paste your code, press Enter again for another new line, and lastly three more backticks.
```yaml
example: here
```
Don't forget you can edit your post rather than repeatedly posting the same thing.

chrome spade