Addition to previous commit (examples and forgotten save)

embedded-hal-1.0
Chris 2018-10-10 17:03:18 +02:00
parent 89489da657
commit f131636b01
4 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ use eink_waveshare_rs::{
EPD1in54,
//drawing::{Graphics},
color::Color,
WaveshareInterface,
WaveshareDisplay,
};
use lin_hal::spidev::{self, SpidevOptions};

View File

@ -9,7 +9,7 @@ use eink_waveshare_rs::{
EPD4in2,
drawing::{Graphics},
color::Color,
WaveshareInterface,
WaveshareDisplay,
};
use lin_hal::spidev::{self, SpidevOptions};

View File

@ -30,7 +30,7 @@ use eink_waveshare_rs::{
SPI_MODE,
//drawing::{Graphics},
color::Color,
WaveshareInterface,
WaveshareDisplay,
};

View File

@ -6,8 +6,8 @@ use hal::{
use color::Color;
/// Interface for the physical connection between display and the controlling device
pub(crate) mod connection_interface;
/// All commands need to have this trait which gives the address of the command
@ -48,7 +48,7 @@ where
}
pub trait WaveshareInterface<SPI, CS, BUSY, DC, RST>
pub trait WaveshareDisplay<SPI, CS, BUSY, DC, RST>
where
SPI: Write<u8>,
CS: OutputPin,