From bc1b35d2ffc279f454b5854f18e9edbad741e9a8 Mon Sep 17 00:00:00 2001 From: gemu Date: Wed, 18 Jan 2023 08:50:22 +0100 Subject: [PATCH] Update xdsp_05_epaper_29.ino (#17738) --- tasmota/tasmota_xdsp_display/xdsp_05_epaper_29.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_xdsp_display/xdsp_05_epaper_29.ino b/tasmota/tasmota_xdsp_display/xdsp_05_epaper_29.ino index 46f8dabe2..4c18e219b 100644 --- a/tasmota/tasmota_xdsp_display/xdsp_05_epaper_29.ino +++ b/tasmota/tasmota_xdsp_display/xdsp_05_epaper_29.ino @@ -62,10 +62,10 @@ void EpdInitDriver29(void) { // whiten display with full update, takes 3 seconds if (TasmotaGlobal.soft_spi_enabled) { - epd->Begin(Pin(GPIO_EPAPER29_CS), Pin(GPIO_SSPI_MOSI), Pin(GPIO_SSPI_SCLK)); + epd->Begin(Pin(GPIO_EPAPER29_CS), Pin(GPIO_SSPI_MOSI), Pin(GPIO_SSPI_SCLK), Pin(GPIO_OLED_RESET), Pin(GPIO_SSPI_MISO)); } else if (TasmotaGlobal.spi_enabled) { - epd->Begin(Pin(GPIO_EPAPER29_CS), Pin(GPIO_SPI_MOSI), Pin(GPIO_SPI_CLK)); + epd->Begin(Pin(GPIO_EPAPER29_CS), Pin(GPIO_SPI_MOSI), Pin(GPIO_SPI_CLK), Pin(GPIO_OLED_RESET)); } renderer = epd;