reverse color change

embedded-hal-1.0
Chris 2018-10-18 22:58:34 +02:00
parent 9d6a009f49
commit 591d25f74a
2 changed files with 3 additions and 5 deletions

View File

@ -351,7 +351,7 @@ fn run() -> Result<(), std::io::Error> {
epd4in2.update_frame(&mut spi, &display.buffer()).unwrap();
epd4in2.display_frame(&mut spi).expect("display frame new graphics");
if i >= 20 {
if i >= limit {
break;
}

View File

@ -98,12 +98,10 @@ impl Drawing<Color> for DisplayEink42BlackWhite {
match color {
Color::Black => {
//self.buffer[idx] &= !bit;
self.buffer[idx] |= bit;
self.buffer[idx] &= !bit;
}
Color::White => {
//self.buffer[idx] |= bit;
self.buffer[idx] &= !bit;
self.buffer[idx] |= bit;
}
}
}