This commit is contained in:
Michael Davidson 2024-05-02 15:45:58 +12:00 committed by GitHub
commit d2f75936f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 195 additions and 1 deletions

View File

@ -58,6 +58,9 @@ WaveshareEPaper4P2In = waveshare_epaper_ns.class_(
WaveshareEPaper4P2InBV2 = waveshare_epaper_ns.class_(
"WaveshareEPaper4P2InBV2", WaveshareEPaper
)
WaveshareEPaper4P2InV2 = waveshare_epaper_ns.class_(
"WaveshareEPaper4P2InV2", WaveshareEPaper
)
WaveshareEPaper5P8In = waveshare_epaper_ns.class_(
"WaveshareEPaper5P8In", WaveshareEPaper
)
@ -121,6 +124,7 @@ MODELS = {
"2.90in-dke": ("c", WaveshareEPaper2P9InDKE),
"4.20in": ("b", WaveshareEPaper4P2In),
"4.20in-bv2": ("b", WaveshareEPaper4P2InBV2),
"4.20in-v2": ("a-alt", WaveshareEPaper4P2InV2),
"5.83in": ("b", WaveshareEPaper5P8In),
"5.83inv2": ("b", WaveshareEPaper5P8InV2),
"7.50in": ("b", WaveshareEPaper7P5In),
@ -189,7 +193,7 @@ async def to_code(config):
if model_type == "a":
rhs = WaveshareEPaperTypeA.new(model)
var = cg.Pvariable(config[CONF_ID], rhs, WaveshareEPaperTypeA)
elif model_type in ("b", "c"):
elif model_type in ("a-alt", "b", "c"):
rhs = model.new()
var = cg.Pvariable(config[CONF_ID], rhs, model)
else:

View File

@ -0,0 +1,158 @@
#include "waveshare_42v2.h"
#include <cstdint>
#include "esphome/core/log.h"
namespace esphome {
namespace waveshare_epaper {
static const char *const TAG = "waveshare_4.2v2";
void WaveshareEPaper4P2InV2::display() {
ESP_LOGD(TAG, "Performing full update");
this->full_update_();
}
void WaveshareEPaper4P2InV2::full_update_() {
this->reset_();
this->wait_until_idle_();
this->command(0x24);
this->start_data_();
this->write_array(this->buffer_, this->get_buffer_length_());
this->end_data_();
this->command(0x26);
this->start_data_();
this->write_array(this->buffer_, this->get_buffer_length_());
this->end_data_();
this->turn_on_display_full_();
this->deep_sleep();
}
void WaveshareEPaper4P2InV2::turn_on_display_full_() {
this->command(0x22);
this->data(0xc7);
this->command(0x20);
this->wait_until_idle_();
}
void WaveshareEPaper4P2InV2::set_window_(uint16_t x, uint16_t y, uint16_t x2, uint16_t y2) {
this->command(0x44); // SET_RAM_X_ADDRESS_START_END_POSITION
this->data((x >> 3) & 0xFF);
this->data((x2 >> 3) & 0xFF);
this->command(0x45); // SET_RAM_Y_ADDRESS_START_END_POSITION
this->data(y & 0xFF);
this->data((y >> 8) & 0xFF);
this->data(62 & 0xFF);
this->data((y2 >> 8) & 0xFF);
}
void WaveshareEPaper4P2InV2::clear_() {
uint8_t *buffer = (uint8_t *) calloc(this->get_buffer_length_(), sizeof(uint8_t));
memset(buffer, 0xff, this->get_buffer_length_());
this->command(0x24);
this->start_data_();
this->write_array(buffer, this->get_buffer_length_());
this->end_data_();
this->command(0x26);
this->start_data_();
this->write_array(buffer, this->get_buffer_length_());
this->end_data_();
free(buffer);
}
void WaveshareEPaper4P2InV2::set_cursor_(uint16_t x, uint16_t y) {
this->command(0x4E); // SET_RAM_X_ADDRESS_COUNTER
this->data(x & 0xFF);
this->command(0x4F); // SET_RAM_Y_ADDRESS_COUNTER
this->data(y & 0xFF);
this->data((y >> 8) & 0xFF);
}
void WaveshareEPaper4P2InV2::fast_initialize_() {
#define MODE_1_SECOND 1
#define MODE_1_5_SECOND 0
this->reset_();
if (!this->wait_until_idle_()) {
ESP_LOGW(TAG, "wait_until_idle_ returned FALSE. Is your busy pin set?");
}
this->command(0x12); // soft reset
if (!this->wait_until_idle_()) {
ESP_LOGW(TAG, "wait_until_idle_ returned FALSE. Is your busy pin set?");
}
this->command(0x21);
this->data(0x40);
this->data(0x00);
this->command(0x3C);
this->data(0x05);
#if MODE_1_5_SECOND
// 1.5s
this->command(0x1A); // Write to temperature register
this->data(0x6E);
#endif
#if MODE_1_SECOND
// 1s
this->command(0x1A); // Write to temperature register
this->data(0x5A);
#endif
this->command(0x22); // Load temperature value
this->data(0x91);
this->command(0x20);
if (!this->wait_until_idle_()) {
ESP_LOGW(TAG, "wait_until_idle_ returned FALSE. Is your busy pin set?");
}
this->command(0x11); // data entry mode
this->data(0x03); // X-mode
this->set_window_(0, 0, this->get_width_internal() - 1, this->get_height_internal() - 1);
this->set_cursor_(0, 0);
if (!this->wait_until_idle_()) {
ESP_LOGW(TAG, "wait_until_idle_ returned FALSE. Is your busy pin set?");
}
this->clear_();
this->turn_on_display_full_();
}
void WaveshareEPaper4P2InV2::initialize() {
this->fast_initialize_();
}
void WaveshareEPaper4P2InV2::deep_sleep() {
this->command(0x10);
this->data(0x01);
delay(200);
}
void WaveshareEPaper4P2InV2::set_full_update_every(uint32_t full_update_every) {
this->full_update_every_ = full_update_every;
}
int WaveshareEPaper4P2InV2::get_width_internal() { return 400; }
int WaveshareEPaper4P2InV2::get_height_internal() { return 300; }
void WaveshareEPaper4P2InV2::reset_() {
this->reset_pin_->digital_write(true); // Note: Should be inverted logic
delay(100);
this->reset_pin_->digital_write(false); // Note: Should be inverted logic according to the docs
delay(this->reset_duration_);
this->reset_pin_->digital_write(true); // Note: Should be inverted logic
delay(100);
}
} // namespace waveshare_epaper
} // namespace esphome

View File

@ -0,0 +1,32 @@
#include "waveshare_epaper.h"
namespace esphome {
namespace waveshare_epaper {
class WaveshareEPaper4P2InV2 : public WaveshareEPaper {
public:
void display() override;
void initialize() override;
void deep_sleep() override;
void set_full_update_every(uint32_t full_update_every);
protected:
void fast_initialize_();
void full_update_();
void reset_();
void set_window_(uint16_t x, uint16_t y, uint16_t x1, uint16_t y2);
void set_cursor_(uint16_t x, uint16_t y);
void turn_on_display_full_();
void clear_();
int get_width_internal() override;
int get_height_internal() override;
uint32_t full_update_every_{30};
uint32_t at_update_{0};
};
} // namespace waveshare_epaper
} // namespace esphome