-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Amalgamation of waveshare/e-Paper code, datasheet PDF reference code and existing 2in13v2 driver
- Loading branch information
1 parent
a8f990f
commit 85408f0
Showing
3 changed files
with
666 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
//! SPI Commands for the Waveshare 2.13"B V4 E-Ink Display | ||
use crate::traits; | ||
|
||
extern crate bit_field; | ||
use bit_field::BitField; | ||
|
||
/// Epd2in13 v4 | ||
/// | ||
/// For more infos about the addresses and what they are doing look into the pdfs | ||
#[allow(dead_code)] | ||
#[derive(Copy, Clone)] | ||
pub(crate) enum Command { | ||
DriverOutputControl = 0x01, | ||
GateDrivingVoltageCtrl = 0x03, | ||
SourceDrivingVoltageCtrl = 0x04, | ||
DeepSleepMode = 0x10, | ||
DataEntryModeSetting = 0x11, | ||
SwReset = 0x12, | ||
TemperatureSensorRead = 0x18, | ||
MasterActivation = 0x20, | ||
DisplayUpdateControl1 = 0x21, | ||
DisplayUpdateControl2 = 0x22, | ||
WriteRam = 0x24, | ||
WriteRamRed = 0x26, | ||
WriteVcomRegister = 0x2C, | ||
StatusBitRead = 0x2F, | ||
WriteLutRegister = 0x32, | ||
BorderWaveformControl = 0x3C, | ||
SetRamXAddressStartEndPosition = 0x44, | ||
SetRamYAddressStartEndPosition = 0x45, | ||
SetRamXAddressCounter = 0x4E, | ||
SetRamYAddressCounter = 0x4F, | ||
} | ||
|
||
pub(crate) struct DriverOutput { | ||
pub scan_is_linear: bool, | ||
pub scan_g0_is_first: bool, | ||
pub scan_dir_incr: bool, | ||
pub width: u16, | ||
} | ||
|
||
impl DriverOutput { | ||
pub fn to_bytes(&self) -> [u8; 3] { | ||
[ | ||
self.width as u8, | ||
(self.width >> 8) as u8, | ||
*0u8.set_bit(0, !self.scan_dir_incr) | ||
.set_bit(1, !self.scan_g0_is_first) | ||
.set_bit(2, !self.scan_is_linear), | ||
] | ||
} | ||
} | ||
|
||
#[allow(dead_code, clippy::enum_variant_names)] | ||
#[derive(Copy, Clone)] | ||
pub(crate) enum RamOption { | ||
Normal = 0x0, | ||
BypassAs0 = 0x2, | ||
Inverse = 0x4, | ||
} | ||
|
||
pub(crate) struct DisplayUpdateControl { | ||
pub red_ram_option: RamOption, | ||
pub bw_ram_option: RamOption, | ||
pub source_output_mode: bool, | ||
} | ||
|
||
impl DisplayUpdateControl { | ||
pub fn to_bytes(&self) -> [u8; 2] { | ||
[ | ||
((self.red_ram_option as u8) << 4) | (self.bw_ram_option as u8), | ||
if self.source_output_mode { 128 } else { 0 }, | ||
] | ||
} | ||
} | ||
|
||
#[allow(dead_code, clippy::enum_variant_names)] | ||
pub(crate) enum DataEntryModeIncr { | ||
XDecrYDecr = 0x0, | ||
XIncrYDecr = 0x1, | ||
XDecrYIncr = 0x2, | ||
XIncrYIncr = 0x3, | ||
} | ||
|
||
#[allow(dead_code)] | ||
pub(crate) enum DataEntryModeDir { | ||
XDir = 0x0, | ||
YDir = 0x4, | ||
} | ||
|
||
#[allow(dead_code)] | ||
#[derive(Copy, Clone)] | ||
pub(crate) enum BorderWaveFormVbd { | ||
Gs = 0x0, | ||
FixLevel = 0x1, | ||
Vcom = 0x2, | ||
} | ||
|
||
#[allow(dead_code)] | ||
#[derive(Copy, Clone)] | ||
pub(crate) enum BorderWaveFormFixLevel { | ||
Vss = 0x0, | ||
Vsh1 = 0x1, | ||
Vsl = 0x2, | ||
Vsh2 = 0x3, | ||
} | ||
|
||
#[allow(dead_code)] | ||
#[derive(Copy, Clone)] | ||
pub(crate) enum BorderWaveFormGs { | ||
Lut0 = 0x0, | ||
Lut1 = 0x1, | ||
Lut2 = 0x2, | ||
Lut3 = 0x3, | ||
} | ||
|
||
pub(crate) struct BorderWaveForm { | ||
pub vbd: BorderWaveFormVbd, | ||
pub fix_level: BorderWaveFormFixLevel, | ||
pub gs_trans: BorderWaveFormGs, | ||
} | ||
|
||
impl BorderWaveForm { | ||
pub fn to_u8(&self) -> u8 { | ||
*0u8.set_bits(6..8, self.vbd as u8) | ||
.set_bits(4..6, self.fix_level as u8) | ||
.set_bits(0..2, self.gs_trans as u8) | ||
} | ||
} | ||
|
||
#[allow(dead_code)] | ||
#[derive(Copy, Clone)] | ||
pub enum DeepSleepMode { | ||
// Sleeps and keeps access to RAM and controller | ||
Normal = 0x00, | ||
// Sleeps without access to RAM/controller but keeps RAM content | ||
Mode1 = 0x01, | ||
// Same as MODE_1 but RAM content is not kept | ||
Mode2 = 0x11, | ||
} | ||
|
||
impl traits::Command for Command { | ||
/// Returns the address of the command | ||
fn address(self) -> u8 { | ||
self as u8 | ||
} | ||
} |
Oops, something went wrong.