Skip to content

Commit

Permalink
Update waveshare_epaper.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixswiss committed Nov 26, 2023
1 parent fa9cb69 commit 0fe9065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esphome/components/waveshare_epaper/waveshare_epaper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1469,14 +1469,14 @@ void HOT WaveshareEPaper7P5InBV3::display() {
this->command(0x10);
delay(2);
for (uint32_t i = 0; i < buf_len; i++) {
this->data(0x00);
this->data(~(this->buffer_[i]));
}
delay(2);

Check failure on line 1474 in esphome/components/waveshare_epaper/waveshare_epaper.cpp

View workflow job for this annotation

GitHub Actions / Run script/ci-custom

Trailing whitespace detected

Check failure on line 1475 in esphome/components/waveshare_epaper/waveshare_epaper.cpp

View workflow job for this annotation

GitHub Actions / Run script/ci-custom

Trailing whitespace detected
this->command(0x13);
delay(2);
for (uint32_t i = 0; i < buf_len; i++) {
this->data(~(this->buffer_[i]));
this->data(this->buffer_[i]);
}
delay(2);

Check failure on line 1481 in esphome/components/waveshare_epaper/waveshare_epaper.cpp

View workflow job for this annotation

GitHub Actions / Run script/ci-custom

Trailing whitespace detected

Expand Down

0 comments on commit 0fe9065

Please sign in to comment.