mirror of
https://github.com/esphome/esphome.git
synced 2026-07-10 17:05:36 +00:00
792dfbcbbf
Co-authored-by: Clyde Stubbs <2366188+clydebarrow@users.noreply.github.com>
19 lines
456 B
YAML
19 lines
456 B
YAML
display:
|
|
- platform: ssd1306_i2c
|
|
i2c_id: i2c_bus
|
|
id: st7123_ssd1306_i2c_display
|
|
model: SSD1306_128X64
|
|
reset_pin: ${display_reset_pin}
|
|
pages:
|
|
- id: st7123_page1
|
|
lambda: |-
|
|
it.rectangle(0, 0, it.get_width(), it.get_height());
|
|
|
|
touchscreen:
|
|
- platform: st7123
|
|
i2c_id: i2c_bus
|
|
id: st7123_touchscreen
|
|
display: st7123_ssd1306_i2c_display
|
|
interrupt_pin: ${interrupt_pin}
|
|
reset_pin: ${reset_pin}
|