4 changed files with 23 additions and 17 deletions
@ -0,0 +1,14 @@ |
|||||||
|
// Original Waveforms from Waveshare
|
||||||
|
pub(crate) const LUT_FULL_UPDATE: [u8; 30] =[ |
||||||
|
0x02, 0x02, 0x01, 0x11, 0x12, 0x12, 0x22, 0x22,
|
||||||
|
0x66, 0x69, 0x69, 0x59, 0x58, 0x99, 0x99, 0x88,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0xF8, 0xB4, 0x13, 0x51,
|
||||||
|
0x35, 0x51, 0x51, 0x19, 0x01, 0x00
|
||||||
|
]; |
||||||
|
|
||||||
|
pub(crate) const LUT_PARTIAL_UPDATE: [u8; 30] =[ |
||||||
|
0x10, 0x18, 0x18, 0x08, 0x18, 0x18, 0x08, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x13, 0x14, 0x44, 0x12,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||||
|
]; |
||||||
@ -1,16 +1,2 @@ |
|||||||
pub(crate) mod command; |
pub(crate) mod command; |
||||||
|
pub(crate) mod constants; |
||||||
// Original Waveforms from Waveshare
|
|
||||||
pub(crate) const LUT_FULL_UPDATE: [u8; 30] =[ |
|
||||||
0x02, 0x02, 0x01, 0x11, 0x12, 0x12, 0x22, 0x22,
|
|
||||||
0x66, 0x69, 0x69, 0x59, 0x58, 0x99, 0x99, 0x88,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0xF8, 0xB4, 0x13, 0x51,
|
|
||||||
0x35, 0x51, 0x51, 0x19, 0x01, 0x00
|
|
||||||
]; |
|
||||||
|
|
||||||
pub(crate) const LUT_PARTIAL_UPDATE: [u8; 30] =[ |
|
||||||
0x10, 0x18, 0x18, 0x08, 0x18, 0x18, 0x08, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x13, 0x14, 0x44, 0x12,
|
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
|
||||||
]; |
|
||||||
Loading…
Reference in new issue