Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/epd2in13_v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub type Display2in13 = crate::graphics::Display<
>;

/// Width of the display.
pub const WIDTH: u32 = 122;
pub const WIDTH: u32 = 130;

/// Height of the display
pub const HEIGHT: u32 = 250;
Expand Down Expand Up @@ -592,7 +592,7 @@ mod tests {

#[test]
fn epd_size() {
assert_eq!(WIDTH, 122);
assert_eq!(WIDTH, 130);
assert_eq!(HEIGHT, 250);
assert_eq!(DEFAULT_BACKGROUND_COLOR, Color::White);
}
Expand Down
Loading