mirror of
https://github.com/esphome/esphome.git
synced 2026-09-21 12:08:38 +00:00
36 lines
568 B
YAML
36 lines
568 B
YAML
esphome:
|
|
name: test-tabview-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:
|
|
- tabview:
|
|
id: tabview_widget
|
|
tabs:
|
|
- name: "Tab 1"
|
|
id: tab_1
|