Moved Colors into its own module

embedded-hal-1.0
Christoph Groß 2018-09-19 11:44:17 +02:00
parent a40cda8756
commit e0cf10bf4e
9 changed files with 12 additions and 9 deletions

View File

@ -7,7 +7,8 @@ extern crate eink_waveshare_rs;
use eink_waveshare_rs::{
EPD1in54,
drawing::{Graphics, color::Color},
//drawing::{Graphics},
color::Color,
WaveshareInterface,
};

View File

@ -7,7 +7,8 @@ extern crate eink_waveshare_rs;
use eink_waveshare_rs::{
EPD4in2,
drawing::{Graphics, color::Color},
drawing::{Graphics},
color::Color,
WaveshareInterface,
};

View File

@ -1,8 +1,7 @@
pub mod font;
use self::font::Font;
pub mod color;
use self::color::Color;
use color::Color;
#[derive(Clone, Copy)]
pub enum Displayorientation {

View File

@ -31,9 +31,9 @@ use hal::{
use type_a::{command::Command, LUT_FULL_UPDATE, LUT_PARTIAL_UPDATE};
use drawing::color::Color;
use color::Color;
use interface::*;
use interface::{WaveshareInterface};
use interface::connection_interface::ConnectionInterface;

View File

@ -30,7 +30,7 @@ use hal::{
use type_a::{command::Command, LUT_FULL_UPDATE, LUT_PARTIAL_UPDATE};
use drawing::color::Color;
use color::Color;
use interface::*;

View File

@ -57,7 +57,7 @@ use interface::{connection_interface::ConnectionInterface, WaveshareInterface, I
mod constants;
use self::constants::*;
use drawing::color::Color;
use color::Color;
pub mod command;
use self::command::Command;

View File

@ -4,7 +4,7 @@ use hal::{
digital::*,
};
use drawing::color::Color;
use color::Color;
/// Interface for the physical connection between display and the controlling device
pub(crate) mod connection_interface;

View File

@ -52,6 +52,8 @@ pub mod drawing;
mod interface;
pub use interface::{WaveshareInterface};
pub mod color;
#[cfg(feature = "epd4in2")]
mod epd4in2;
#[cfg(feature = "epd4in2")]