Skip to content

Commit

Permalink
fix buffer size for 7in5v3
Browse files Browse the repository at this point in the history
  • Loading branch information
vhdirk committed Nov 7, 2023
1 parent cff9130 commit 46c38bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epd7in5_v3/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub type Display7in5 = crate::graphics::Display<
WIDTH,
HEIGHT,
false,
{ buffer_len(WIDTH as usize, HEIGHT as usize) },
{ buffer_len(WIDTH as usize, HEIGHT as usize * 2) },
TriColor,
>;

Expand Down

0 comments on commit 46c38bd

Please sign in to comment.