Remove unused imports
This commit is contained in:
parent
3778eaa9da
commit
23ae1869db
@ -2,25 +2,22 @@
|
||||
#![no_main]
|
||||
|
||||
use core::cell::RefCell;
|
||||
use defmt::info;
|
||||
use display_interface_spi::SPIInterface;
|
||||
use embassy_embedded_hal::shared_bus::blocking::spi::SpiDevice;
|
||||
use embassy_executor::Spawner;
|
||||
use embassy_nrf::{
|
||||
bind_interrupts,
|
||||
gpio::{AnyPin, Level, Output, OutputDrive, Pin},
|
||||
peripherals,
|
||||
spim::{self, Spim},
|
||||
peripherals, spim,
|
||||
};
|
||||
use embassy_sync::blocking_mutex::Mutex;
|
||||
use embassy_time::{Delay, Duration, Timer};
|
||||
use embedded_hal::digital::OutputPin;
|
||||
use embassy_time::{Duration, Timer};
|
||||
use ili9341::Ili9341;
|
||||
use {defmt_rtt as _, panic_probe as _};
|
||||
|
||||
use embedded_graphics::{
|
||||
mono_font::{ascii::FONT_10X20, MonoTextStyle},
|
||||
pixelcolor::{BinaryColor, Rgb565},
|
||||
pixelcolor::Rgb565,
|
||||
prelude::*,
|
||||
primitives::{
|
||||
Circle, PrimitiveStyle, PrimitiveStyleBuilder, Rectangle, StrokeAlignment, Triangle,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user