mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 11:08:10 +01:00
Corrected formatting
This commit is contained in:
parent
28776d9169
commit
7d9fed1b7a
2 changed files with 19 additions and 19 deletions
|
@ -2649,7 +2649,7 @@ bool WaveshareEPaper7P5InV2P::wait_until_idle_() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
App.feed_wdt();
|
App.feed_wdt();
|
||||||
delay(10); // NOLINT
|
delay(10); // NOLINT
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -2657,17 +2657,17 @@ bool WaveshareEPaper7P5InV2P::wait_until_idle_() {
|
||||||
void WaveshareEPaper7P5InV2P::reset_() {
|
void WaveshareEPaper7P5InV2P::reset_() {
|
||||||
if (this->reset_pin_ != nullptr) {
|
if (this->reset_pin_ != nullptr) {
|
||||||
this->reset_pin_->digital_write(true);
|
this->reset_pin_->digital_write(true);
|
||||||
delay(20); // NOLINT
|
delay(20); // NOLINT
|
||||||
this->reset_pin_->digital_write(false);
|
this->reset_pin_->digital_write(false);
|
||||||
delay(2); // NOLINT
|
delay(2); // NOLINT
|
||||||
this->reset_pin_->digital_write(true);
|
this->reset_pin_->digital_write(true);
|
||||||
delay(20); // NOLINT
|
delay(20); // NOLINT
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WaveshareEPaper7P5InV2P::turn_on_display_() {
|
void WaveshareEPaper7P5InV2P::turn_on_display_() {
|
||||||
this->command(0x12);
|
this->command(0x12);
|
||||||
delay(100); // NOLINT
|
delay(100); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2690,7 +2690,7 @@ void WaveshareEPaper7P5InV2P::initialize() {
|
||||||
|
|
||||||
// COMMAND POWER DRIVER HAT UP
|
// COMMAND POWER DRIVER HAT UP
|
||||||
this->command(0x04);
|
this->command(0x04);
|
||||||
delay(100); // NOLINT
|
delay(100); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
|
|
||||||
// COMMAND PANEL SETTING
|
// COMMAND PANEL SETTING
|
||||||
|
@ -2734,7 +2734,7 @@ void HOT WaveshareEPaper7P5InV2P::display() {
|
||||||
ESP_LOGI(TAG, "Power on the display and hat");
|
ESP_LOGI(TAG, "Power on the display and hat");
|
||||||
|
|
||||||
this->command(0x04);
|
this->command(0x04);
|
||||||
delay(200); // NOLINT
|
delay(200); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
|
|
||||||
if (this->full_update_every_ == 1) {
|
if (this->full_update_every_ == 1) {
|
||||||
|
@ -2762,21 +2762,21 @@ void HOT WaveshareEPaper7P5InV2P::display() {
|
||||||
this->command(0x92);
|
this->command(0x92);
|
||||||
|
|
||||||
this->command(0x10);
|
this->command(0x10);
|
||||||
delay(2); // NOLINT
|
delay(2); // NOLINT
|
||||||
for (uint32_t i = 0; i < buf_len; i++) {
|
for (uint32_t i = 0; i < buf_len; i++) {
|
||||||
this->data(~(this->buffer_[i]));
|
this->data(~(this->buffer_[i]));
|
||||||
}
|
}
|
||||||
|
|
||||||
delay(100); // NOLINT
|
delay(100); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
|
|
||||||
this->command(0x13);
|
this->command(0x13);
|
||||||
delay(2); // NOLINT
|
delay(2); // NOLINT
|
||||||
for (uint32_t i = 0; i < buf_len; i++) {
|
for (uint32_t i = 0; i < buf_len; i++) {
|
||||||
this->data(this->buffer_[i]);
|
this->data(this->buffer_[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
delay(100); // NOLINT
|
delay(100); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
|
|
||||||
this->turn_on_display_();
|
this->turn_on_display_();
|
||||||
|
@ -2803,12 +2803,12 @@ void HOT WaveshareEPaper7P5InV2P::display() {
|
||||||
this->data(0x01);
|
this->data(0x01);
|
||||||
|
|
||||||
this->command(0x13);
|
this->command(0x13);
|
||||||
delay(2); // NOLINT
|
delay(2); // NOLINT
|
||||||
for (uint32_t i = 0; i < buf_len; i++) {
|
for (uint32_t i = 0; i < buf_len; i++) {
|
||||||
this->data(this->buffer_[i]);
|
this->data(this->buffer_[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
delay(100); // NOLINT
|
delay(100); // NOLINT
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
|
|
||||||
this->turn_on_display_();
|
this->turn_on_display_();
|
||||||
|
|
|
@ -699,12 +699,12 @@ class WaveshareEPaper7P5InV2P : public WaveshareEPaper {
|
||||||
void dump_config() override;
|
void dump_config() override;
|
||||||
|
|
||||||
void deep_sleep() override {
|
void deep_sleep() override {
|
||||||
// COMMAND POWER OFF
|
// COMMAND POWER OFF
|
||||||
this->command(0x02);
|
this->command(0x02);
|
||||||
this->wait_until_idle_();
|
this->wait_until_idle_();
|
||||||
// COMMAND DEEP SLEEP
|
// COMMAND DEEP SLEEP
|
||||||
this->command(0x07);
|
this->command(0x07);
|
||||||
this->data(0xA5); // check byte
|
this->data(0xA5); // check byte
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_full_update_every(uint32_t full_update_every);
|
void set_full_update_every(uint32_t full_update_every);
|
||||||
|
|
Loading…
Reference in a new issue