Browse Source

epd7in5 HD: Corrected import of `RefreshLut` trait

main
pi 5 years ago
parent
commit
a1e9c17b53
  1. 4
      src/epd7in5_hd/mod.rs

4
src/epd7in5_hd/mod.rs

@ -16,7 +16,7 @@ use embedded_hal::{
use crate::color::Color; use crate::color::Color;
use crate::interface::DisplayInterface; use crate::interface::DisplayInterface;
use crate::traits::{InternalWiAdditions, RefreshLUT, WaveshareDisplay}; use crate::traits::{InternalWiAdditions, RefreshLut, WaveshareDisplay};
pub(crate) mod command; pub(crate) mod command;
use self::command::Command; use self::command::Command;
@ -211,7 +211,7 @@ where
fn set_lut( fn set_lut(
&mut self, &mut self,
_spi: &mut SPI, _spi: &mut SPI,
_refresh_rate: Option<RefreshLUT>, _refresh_rate: Option<RefreshLut>,
) -> Result<(), SPI::Error> { ) -> Result<(), SPI::Error> {
unimplemented!(); unimplemented!();
} }

Loading…
Cancel
Save