reverse color change
parent
9d6a009f49
commit
591d25f74a
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue