From 20b16d44630223a49f7479f49f2846c96be2a12b Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Fri, 10 Oct 2025 16:19:39 -1000 Subject: [PATCH] Turn on the backlight --- ui-stm32/src/board/ev13.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-stm32/src/board/ev13.rs b/ui-stm32/src/board/ev13.rs index bd26389..8e3715e 100644 --- a/ui-stm32/src/board/ev13.rs +++ b/ui-stm32/src/board/ev13.rs @@ -115,7 +115,7 @@ impl Board { let chip_select = Output::new(p.PB8, Level::Low, Speed::Low); let data_command = Output::new(p.PB9, Level::Low, Speed::Low); let reset = Output::new(p.PC13, Level::Low, Speed::Low); - let backlight = Output::new(p.PC14, Level::Low, Speed::Low); + let backlight = Output::new(p.PC14, Level::High, Speed::Low); let config = { use embassy_stm32::spi::*;