mirror of
https://github.com/esphome/esphome.git
synced 2025-10-12 23:03:46 +01:00
20 lines
473 B
YAML
20 lines
473 B
YAML
display:
|
|
- platform: st7567_i2c
|
|
i2c_id: i2c_bus
|
|
reset_pin: ${reset_pin}
|
|
address: 0x3C
|
|
id: display1
|
|
pages:
|
|
- id: st7567_i2c_page1
|
|
lambda: |-
|
|
it.rectangle(0, 0, it.get_width(), it.get_height());
|
|
- id: st7567_i2c_page2
|
|
lambda: |-
|
|
it.rectangle(0, 0, 10, 10);
|
|
on_page_change:
|
|
from: st7567_i2c_page1
|
|
to: st7567_i2c_page2
|
|
then:
|
|
lambda: |-
|
|
ESP_LOGD("display", "1 -> 2");
|