From b342f29e45353e53d44daa3742e2e96fdf6da4f2 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Sun, 3 May 2026 15:48:12 +0200 Subject: [PATCH] lcd werks --- pico/src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pico/src/main.rs b/pico/src/main.rs index 82bfdb9..e06c7cb 100644 --- a/pico/src/main.rs +++ b/pico/src/main.rs @@ -86,15 +86,15 @@ async fn main(spawner: Spawner) { let edelay = &mut Delay; let mut lcd: LcdDisplay<_, _> = LcdDisplay::new( - Output::new(p.PIN_18, Level::Low), - Output::new(p.PIN_19, Level::Low), + Output::new(p.PIN_14, Level::Low), + Output::new(p.PIN_15, Level::Low), edelay, ) .with_half_bus( + Output::new(p.PIN_10, Level::Low), + Output::new(p.PIN_11, Level::Low), + Output::new(p.PIN_12, Level::Low), Output::new(p.PIN_13, Level::Low), - Output::new(p.PIN_14, Level::Low), - Output::new(p.PIN_15, Level::Low), - Output::new(p.PIN_16, Level::Low), ) .with_display(Display::On) .with_blink(Blink::On)