From b58fa33f3ec16fcfe85f28e29b0cb3052e4de92d Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Fri, 10 Oct 2025 16:13:14 -1000 Subject: [PATCH] Change from ILI9341 to ST7789 --- ui-stm32/src/board/ev13.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui-stm32/src/board/ev13.rs b/ui-stm32/src/board/ev13.rs index bd26389..fad26c1 100644 --- a/ui-stm32/src/board/ev13.rs +++ b/ui-stm32/src/board/ev13.rs @@ -16,7 +16,7 @@ use embassy_time::Delay; use embedded_graphics::{pixelcolor::Rgb565, prelude::*}; use mipidsi::{ interface::SpiInterface, - models::ILI9341Rgb565, + models::ST7789, options::{ColorOrder, Orientation}, Builder, Display, }; @@ -28,7 +28,7 @@ type DisplaySpiInterface = SpiInterface<'static, DisplaySpiDevice, Output<'stati pub struct Board { status_led: StatusLed, - screen: Display>, + screen: Display>, net_tx: NetTx>, i2c: I2c<'static, Blocking, Master>, pub button_a: Option