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)