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 25, 2023
1 parent 08777ac commit 7265647
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion esphome/components/waveshare_epaper/waveshare_epaper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1416,8 +1416,15 @@ void HOT WaveshareEPaper7P5InBV3::display() {
for (uint32_t i = 0; i < buf_len; i++) {
this->data(~(this->buffer_[i]));
}

delay(2);

Check failure on line 1419 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(0x00);
}
delay(2);

Check failure on line 1426 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 1427 in esphome/components/waveshare_epaper/waveshare_epaper.cpp

View workflow job for this annotation

GitHub Actions / Run script/ci-custom

Trailing whitespace detected
/* // COMMAND DATA START TRANSMISSION 1 (B/W data)
this->command(0x13);
delay(2);
Expand Down

0 comments on commit 7265647

Please sign in to comment.