1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-15 16:23:48 +01:00
Files
esphome/tests/components/ssd1306_i2c/common.yaml
J. Nick Koston 9f46951959 tweak
2025-10-08 21:34:53 -10:00

22 lines
522 B
YAML

display:
- platform: ssd1306_i2c
i2c_id: i2c_bus
model: SSD1306_128X64
reset_pin: ${reset_pin}
address: 0x3C
id: display1
contrast: 60%
pages:
- id: ssd1306_i2c_page1
lambda: |-
it.rectangle(0, 0, it.get_width(), it.get_height());
- id: ssd1306_i2c_page2
lambda: |-
it.rectangle(0, 0, 10, 10);
on_page_change:
from: ssd1306_i2c_page1
to: ssd1306_i2c_page2
then:
lambda: |-
ESP_LOGD("display", "1 -> 2");