mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 20:48:21 +01:00
69f5d8cd0f
* Fix post-setup brightness control * Add turn_on() and turn_off() methods * Added is_on() method * Set brightness later in setup() * Use clamp() for brightness validation
238 lines
6.9 KiB
C++
238 lines
6.9 KiB
C++
#include "ssd1306_base.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/helpers.h"
|
|
|
|
namespace esphome {
|
|
namespace ssd1306_base {
|
|
|
|
static const char *TAG = "ssd1306";
|
|
|
|
static const uint8_t BLACK = 0;
|
|
static const uint8_t WHITE = 1;
|
|
static const uint8_t SSD1306_MAX_CONTRAST = 255;
|
|
|
|
static const uint8_t SSD1306_COMMAND_DISPLAY_OFF = 0xAE;
|
|
static const uint8_t SSD1306_COMMAND_DISPLAY_ON = 0xAF;
|
|
static const uint8_t SSD1306_COMMAND_SET_DISPLAY_CLOCK_DIV = 0xD5;
|
|
static const uint8_t SSD1306_COMMAND_SET_MULTIPLEX = 0xA8;
|
|
static const uint8_t SSD1306_COMMAND_SET_DISPLAY_OFFSET = 0xD3;
|
|
static const uint8_t SSD1306_COMMAND_SET_START_LINE = 0x40;
|
|
static const uint8_t SSD1306_COMMAND_CHARGE_PUMP = 0x8D;
|
|
static const uint8_t SSD1306_COMMAND_MEMORY_MODE = 0x20;
|
|
static const uint8_t SSD1306_COMMAND_SEGRE_MAP = 0xA0;
|
|
static const uint8_t SSD1306_COMMAND_COM_SCAN_INC = 0xC0;
|
|
static const uint8_t SSD1306_COMMAND_COM_SCAN_DEC = 0xC8;
|
|
static const uint8_t SSD1306_COMMAND_SET_COM_PINS = 0xDA;
|
|
static const uint8_t SSD1306_COMMAND_SET_CONTRAST = 0x81;
|
|
static const uint8_t SSD1306_COMMAND_SET_PRE_CHARGE = 0xD9;
|
|
static const uint8_t SSD1306_COMMAND_SET_VCOM_DETECT = 0xDB;
|
|
static const uint8_t SSD1306_COMMAND_DISPLAY_ALL_ON_RESUME = 0xA4;
|
|
static const uint8_t SSD1306_COMMAND_DEACTIVATE_SCROLL = 0x2E;
|
|
static const uint8_t SSD1306_COMMAND_COLUMN_ADDRESS = 0x21;
|
|
static const uint8_t SSD1306_COMMAND_PAGE_ADDRESS = 0x22;
|
|
|
|
static const uint8_t SSD1306_NORMAL_DISPLAY = 0xA6;
|
|
|
|
void SSD1306::setup() {
|
|
this->init_internal_(this->get_buffer_length_());
|
|
|
|
this->command(SSD1306_COMMAND_DISPLAY_OFF);
|
|
this->command(SSD1306_COMMAND_SET_DISPLAY_CLOCK_DIV);
|
|
this->command(0x80); // suggested ratio
|
|
|
|
this->command(SSD1306_COMMAND_SET_MULTIPLEX);
|
|
this->command(this->get_height_internal() - 1);
|
|
|
|
this->command(SSD1306_COMMAND_SET_DISPLAY_OFFSET);
|
|
this->command(0x00); // no offset
|
|
this->command(SSD1306_COMMAND_SET_START_LINE | 0x00); // start at line 0
|
|
this->command(SSD1306_COMMAND_CHARGE_PUMP);
|
|
if (this->external_vcc_)
|
|
this->command(0x10);
|
|
else
|
|
this->command(0x14);
|
|
|
|
this->command(SSD1306_COMMAND_MEMORY_MODE);
|
|
this->command(0x00);
|
|
this->command(SSD1306_COMMAND_SEGRE_MAP | 0x01);
|
|
this->command(SSD1306_COMMAND_COM_SCAN_DEC);
|
|
|
|
this->command(SSD1306_COMMAND_SET_COM_PINS);
|
|
switch (this->model_) {
|
|
case SSD1306_MODEL_128_32:
|
|
case SH1106_MODEL_128_32:
|
|
case SSD1306_MODEL_96_16:
|
|
case SH1106_MODEL_96_16:
|
|
this->command(0x02);
|
|
break;
|
|
case SSD1306_MODEL_128_64:
|
|
case SH1106_MODEL_128_64:
|
|
case SSD1306_MODEL_64_48:
|
|
case SH1106_MODEL_64_48:
|
|
this->command(0x12);
|
|
break;
|
|
}
|
|
|
|
this->command(SSD1306_COMMAND_SET_PRE_CHARGE);
|
|
if (this->external_vcc_)
|
|
this->command(0x22);
|
|
else
|
|
this->command(0xF1);
|
|
|
|
this->command(SSD1306_COMMAND_SET_VCOM_DETECT);
|
|
this->command(0x00);
|
|
|
|
this->command(SSD1306_COMMAND_DISPLAY_ALL_ON_RESUME);
|
|
this->command(SSD1306_NORMAL_DISPLAY);
|
|
|
|
this->command(SSD1306_COMMAND_DEACTIVATE_SCROLL);
|
|
|
|
set_brightness(this->brightness_);
|
|
|
|
this->fill(BLACK); // clear display - ensures we do not see garbage at power-on
|
|
this->display(); // ...write buffer, which actually clears the display's memory
|
|
|
|
this->turn_on();
|
|
}
|
|
void SSD1306::display() {
|
|
if (this->is_sh1106_()) {
|
|
this->write_display_data();
|
|
return;
|
|
}
|
|
|
|
this->command(SSD1306_COMMAND_COLUMN_ADDRESS);
|
|
switch (this->model_) {
|
|
case SSD1306_MODEL_64_48:
|
|
this->command(0x20);
|
|
this->command(0x20 + this->get_width_internal() - 1);
|
|
break;
|
|
default:
|
|
this->command(0); // Page start address, 0
|
|
this->command(this->get_width_internal() - 1);
|
|
break;
|
|
}
|
|
|
|
this->command(SSD1306_COMMAND_PAGE_ADDRESS);
|
|
// Page start address, 0
|
|
this->command(0);
|
|
// Page end address:
|
|
this->command((this->get_height_internal() / 8) - 1);
|
|
|
|
this->write_display_data();
|
|
}
|
|
bool SSD1306::is_sh1106_() const {
|
|
return this->model_ == SH1106_MODEL_96_16 || this->model_ == SH1106_MODEL_128_32 ||
|
|
this->model_ == SH1106_MODEL_128_64;
|
|
}
|
|
void SSD1306::update() {
|
|
this->do_update_();
|
|
this->display();
|
|
}
|
|
void SSD1306::set_brightness(float brightness) {
|
|
// validation
|
|
this->brightness_ = clamp(brightness, 0, 1);
|
|
// now write the new brightness level to the display
|
|
this->command(SSD1306_COMMAND_SET_CONTRAST);
|
|
this->command(int(SSD1306_MAX_CONTRAST * (this->brightness_)));
|
|
}
|
|
bool SSD1306::is_on() { return this->is_on_; }
|
|
void SSD1306::turn_on() {
|
|
this->command(SSD1306_COMMAND_DISPLAY_ON);
|
|
this->is_on_ = true;
|
|
}
|
|
void SSD1306::turn_off() {
|
|
this->command(SSD1306_COMMAND_DISPLAY_OFF);
|
|
this->is_on_ = false;
|
|
}
|
|
int SSD1306::get_height_internal() {
|
|
switch (this->model_) {
|
|
case SSD1306_MODEL_128_32:
|
|
case SH1106_MODEL_128_32:
|
|
return 32;
|
|
case SSD1306_MODEL_128_64:
|
|
case SH1106_MODEL_128_64:
|
|
return 64;
|
|
case SSD1306_MODEL_96_16:
|
|
case SH1106_MODEL_96_16:
|
|
return 16;
|
|
case SSD1306_MODEL_64_48:
|
|
case SH1106_MODEL_64_48:
|
|
return 48;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
int SSD1306::get_width_internal() {
|
|
switch (this->model_) {
|
|
case SSD1306_MODEL_128_32:
|
|
case SH1106_MODEL_128_32:
|
|
case SSD1306_MODEL_128_64:
|
|
case SH1106_MODEL_128_64:
|
|
return 128;
|
|
case SSD1306_MODEL_96_16:
|
|
case SH1106_MODEL_96_16:
|
|
return 96;
|
|
case SSD1306_MODEL_64_48:
|
|
case SH1106_MODEL_64_48:
|
|
return 64;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
size_t SSD1306::get_buffer_length_() {
|
|
return size_t(this->get_width_internal()) * size_t(this->get_height_internal()) / 8u;
|
|
}
|
|
void HOT SSD1306::draw_absolute_pixel_internal(int x, int y, Color color) {
|
|
if (x >= this->get_width_internal() || x < 0 || y >= this->get_height_internal() || y < 0)
|
|
return;
|
|
|
|
uint16_t pos = x + (y / 8) * this->get_width_internal();
|
|
uint8_t subpos = y & 0x07;
|
|
if (color.is_on()) {
|
|
this->buffer_[pos] |= (1 << subpos);
|
|
} else {
|
|
this->buffer_[pos] &= ~(1 << subpos);
|
|
}
|
|
}
|
|
void SSD1306::fill(Color color) {
|
|
uint8_t fill = color.is_on() ? 0xFF : 0x00;
|
|
for (uint32_t i = 0; i < this->get_buffer_length_(); i++)
|
|
this->buffer_[i] = fill;
|
|
}
|
|
void SSD1306::init_reset_() {
|
|
if (this->reset_pin_ != nullptr) {
|
|
this->reset_pin_->setup();
|
|
this->reset_pin_->digital_write(true);
|
|
delay(1);
|
|
// Trigger Reset
|
|
this->reset_pin_->digital_write(false);
|
|
delay(10);
|
|
// Wake up
|
|
this->reset_pin_->digital_write(true);
|
|
}
|
|
}
|
|
const char *SSD1306::model_str_() {
|
|
switch (this->model_) {
|
|
case SSD1306_MODEL_128_32:
|
|
return "SSD1306 128x32";
|
|
case SSD1306_MODEL_128_64:
|
|
return "SSD1306 128x64";
|
|
case SSD1306_MODEL_96_16:
|
|
return "SSD1306 96x16";
|
|
case SSD1306_MODEL_64_48:
|
|
return "SSD1306 64x48";
|
|
case SH1106_MODEL_128_32:
|
|
return "SH1106 128x32";
|
|
case SH1106_MODEL_128_64:
|
|
return "SH1106 128x64";
|
|
case SH1106_MODEL_96_16:
|
|
return "SH1106 96x16";
|
|
case SH1106_MODEL_64_48:
|
|
return "SH1106 64x48";
|
|
default:
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
} // namespace ssd1306_base
|
|
} // namespace esphome
|