1
0
mirror of https://github.com/esphome/esphome.git synced 2025-01-18 12:05:41 +00:00

fix: (Component WaveshareEPaper) Correct pin number

This commit is contained in:
rrachasak 2024-12-22 21:23:17 +07:00
parent 62226f2987
commit 19be9744b1
No known key found for this signature in database

View File

@ -123,19 +123,18 @@ display:
it.rectangle(0, 0, it.get_width(), it.get_height());
- platform: waveshare_epaper
model: 4.20in-bv2-bwr
spi_id: spi_id_1
cs_pin:
allow_other_uses: true
number: GPIO25
number: 4
dc_pin:
allow_other_uses: true
number: GPIO26
number: 4
busy_pin:
allow_other_uses: true
number: GPIO27
number: 4
reset_pin:
allow_other_uses: true
number: GPIO32
number: 4
lambda: |-
auto const red = Color(255, 0, 0);
it.filled_rectangle( 0, 0, it.get_width() / 2, it.get_height(), COLOR_ON);