mirror of
https://github.com/esphome/esphome.git
synced 2026-09-23 21:14:03 +00:00
35 lines
544 B
YAML
35 lines
544 B
YAML
esphome:
|
|
name: test-qrcode-no-label
|
|
|
|
esp32:
|
|
board: esp32dev
|
|
framework:
|
|
type: esp-idf
|
|
|
|
spi:
|
|
- id: spi_bus
|
|
clk_pin: GPIO18
|
|
mosi_pin: GPIO23
|
|
|
|
display:
|
|
- platform: mipi_spi
|
|
spi_id: spi_bus
|
|
model: st7789v
|
|
id: tft_display
|
|
dimensions:
|
|
width: 240
|
|
height: 320
|
|
cs_pin: GPIO22
|
|
dc_pin: GPIO21
|
|
auto_clear_enabled: false
|
|
invert_colors: false
|
|
update_interval: never
|
|
|
|
lvgl:
|
|
displays: tft_display
|
|
widgets:
|
|
- qrcode:
|
|
id: qr_widget
|
|
size: 100
|
|
text: "esphome.io"
|