cargo fmt
parent
435cfd9a1c
commit
8f89ade010
|
|
@ -6,7 +6,9 @@ use embedded_hal::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::interface::DisplayInterface;
|
use crate::interface::DisplayInterface;
|
||||||
use crate::traits::{InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay};
|
use crate::traits::{
|
||||||
|
InternalWiAdditions, RefreshLUT, WaveshareDisplay, WaveshareThreeColorDisplay,
|
||||||
|
};
|
||||||
|
|
||||||
//The Lookup Tables for the Display
|
//The Lookup Tables for the Display
|
||||||
mod constants;
|
mod constants;
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,6 @@ where
|
||||||
) -> Result<(), SPI::Error>;
|
) -> Result<(), SPI::Error>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Functions to interact with three color panels
|
/// Functions to interact with three color panels
|
||||||
pub trait WaveshareThreeColorDisplay<SPI, CS, BUSY, DC, RST>:
|
pub trait WaveshareThreeColorDisplay<SPI, CS, BUSY, DC, RST>:
|
||||||
WaveshareDisplay<SPI, CS, BUSY, DC, RST>
|
WaveshareDisplay<SPI, CS, BUSY, DC, RST>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue