Skip to content

Commit

Permalink
remove some unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Univa committed Dec 20, 2023
1 parent 824fb0d commit 21988e5
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions rumcake/src/backlight/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@
compile_error!("Exactly one of `simple-backlight`, `simple-backlight-matrix`, `rgb-backlight-matrix` must be enabled at a time. Please choose the one that you want to use.");

use bitflags::bitflags;
use embassy_futures::select;
use embassy_sync::blocking_mutex::raw::ThreadModeRawMutex;
use embassy_sync::channel::Channel;
use embassy_time::{Duration, Ticker};

use crate::keyboard::MATRIX_EVENTS;
use crate::{LEDEffect, State};

pub mod drivers;

Expand Down Expand Up @@ -344,9 +337,7 @@ macro_rules! backlight_module {

pub mod animations;

use animations::{
backlight_effect_items, BacklightAnimator, BacklightCommand, BacklightConfig,
};
use animations::{BacklightAnimator, BacklightCommand, BacklightConfig};

/// Channel for sending backlight commands.
///
Expand Down

0 comments on commit 21988e5

Please sign in to comment.