feat: remove unused imports

This commit is contained in:
doryan 2025-04-22 22:50:44 +04:00
parent 6954ce14de
commit 3915ebbd95

View File

@ -1,23 +1,8 @@
#![no_std] #![no_std]
#![feature(asm_experimental_arch)] #![feature(asm_experimental_arch)]
extern crate core;
mod macros;
mod types;
use types::*;
use core::arch::asm;
use arduino_hal::{
delay_us,
hal::port::{PD0, PD1, PD2, PD3, PD4, PD5, PD6, PD7},
pac::PORTD,
port::{mode::Output, Pin, PinOps},
};
use avr_device::interrupt::free; use avr_device::interrupt::free;
use neopixel_macros::impl_static_pin;
use smart_leds::{SmartLedsWrite, RGB8}; use smart_leds::{SmartLedsWrite, RGB8};