You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
use crate::epd2in9::{DEFAULT_BACKGROUND_COLOR, HEIGHT, WIDTH}; |
|
|
|
/// Full size buffer for use with the 2in9 EPD |
|
/// |
|
/// Can also be manuall constructed: |
|
/// `buffer: [DEFAULT_BACKGROUND_COLOR.get_byte_value(); WIDTH / 8 * HEIGHT]` |
|
pub struct Buffer2in9 { |
|
pub buffer: [u8; WIDTH as usize * HEIGHT as usize / 8], |
|
} |
|
|
|
impl Default for Buffer2in9 { |
|
fn default() -> Self { |
|
Buffer2in9 { |
|
buffer: [DEFAULT_BACKGROUND_COLOR.get_byte_value(); |
|
WIDTH as usize * HEIGHT as usize / 8], |
|
} |
|
} |
|
} |
|
|
|
#[cfg(test)] |
|
mod tests { |
|
use super::*; |
|
use crate::graphics::Display; |
|
|
|
// test buffer length |
|
#[test] |
|
fn graphics_size() { |
|
let mut buffer = Buffer2in9::default(); |
|
let display = Display::new(WIDTH, HEIGHT, &mut buffer.buffer); |
|
assert_eq!(display.buffer().len(), 4736); |
|
} |
|
|
|
// test default background color on all bytes |
|
#[test] |
|
fn graphics_default() { |
|
let mut buffer = Buffer2in9::default(); |
|
let display = Display::new(WIDTH, HEIGHT, &mut buffer.buffer); |
|
for &byte in display.buffer() { |
|
assert_eq!(byte, DEFAULT_BACKGROUND_COLOR.get_byte_value()); |
|
} |
|
} |
|
}
|
|
|