From a1e9c17b53447a710a635238947ac1a3229e1408 Mon Sep 17 00:00:00 2001 From: pi Date: Wed, 14 Apr 2021 15:30:41 +0100 Subject: [PATCH] epd7in5 HD: Corrected import of `RefreshLut` trait --- src/epd7in5_hd/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/epd7in5_hd/mod.rs b/src/epd7in5_hd/mod.rs index 4b0d04c..e9ab1f3 100644 --- a/src/epd7in5_hd/mod.rs +++ b/src/epd7in5_hd/mod.rs @@ -16,7 +16,7 @@ use embedded_hal::{ use crate::color::Color; use crate::interface::DisplayInterface; -use crate::traits::{InternalWiAdditions, RefreshLUT, WaveshareDisplay}; +use crate::traits::{InternalWiAdditions, RefreshLut, WaveshareDisplay}; pub(crate) mod command; use self::command::Command; @@ -211,7 +211,7 @@ where fn set_lut( &mut self, _spi: &mut SPI, - _refresh_rate: Option, + _refresh_rate: Option, ) -> Result<(), SPI::Error> { unimplemented!(); }