main.rs (269B)
1 #![no_std] 2 #![no_main] 3 use panic_halt as _; 4 5 #[allow(dead_code)] 6 mod blink_led; 7 #[allow(dead_code)] 8 mod detect_laser; 9 #[allow(dead_code)] 10 mod flame_pump; 11 12 #[arduino_hal::entry] 13 fn main() -> ! { 14 // Call whichever module you want to flash: 15 detect_laser::run(); 16 }