Browse Source

reduced visibility of commands as they normally should only be needed interally

embedded-hal-1.0
Christoph Groß 7 years ago
parent
commit
4870b72336
  1. 2
      src/epd4in2/command.rs
  2. 2
      src/epd4in2/mod.rs
  3. 2
      src/type_a/command.rs
  4. 3
      src/type_a/mod.rs

2
src/epd4in2/command.rs

@ -10,7 +10,7 @@ use interface;
#[allow(dead_code)]
#[allow(non_camel_case_types)]
#[derive(Copy, Clone)]
pub enum Command {
pub(crate) enum Command {
/// Set Resolution, LUT selection, BWR pixels, gate scan direction, source shift direction, booster switch, soft reset
PANEL_SETTING = 0x00,
/// selecting internal and external power

2
src/epd4in2/mod.rs

@ -60,7 +60,7 @@ use self::constants::*;
use drawing::color::Color;
pub mod command;
pub use self::command::Command;
use self::command::Command;
/// EPD4in2 driver

2
src/type_a/command.rs

@ -11,7 +11,7 @@ use interface;
//#[allow(dead_code)]
#[allow(non_camel_case_types)]
#[derive(Copy, Clone)]
pub enum Command {
pub(crate) enum Command {
/// Driver Output control
/// 3 Databytes:
/// A[7:0]

3
src/type_a/mod.rs

@ -1,5 +1,4 @@
pub mod command;
pub use self::command::Command;
pub(crate) mod command;
// Original Waveforms from Waveshare
pub(crate) const LUT_FULL_UPDATE: [u8; 30] =[

Loading…
Cancel
Save