Reverse the blinker pins

This commit is contained in:
Savanni D'Gerinel 2024-09-15 23:57:06 -04:00
parent 5acc84e423
commit 4eee5321d2
1 changed files with 2 additions and 2 deletions

View File

@ -209,8 +209,8 @@ fn main() -> ! {
embedded_hal::spi::MODE_1,
);
let left_blinker_button = pins.gpio17.into_pull_up_input();
let right_blinker_button = pins.gpio16.into_pull_up_input();
let left_blinker_button = pins.gpio16.into_pull_up_input();
let right_blinker_button = pins.gpio17.into_pull_up_input();
let previous_animation_button = pins.gpio27.into_pull_up_input();
let next_animation_button = pins.gpio26.into_pull_up_input();
let brake_sensor = pins.gpio18.into_pull_up_input();