1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 00:31:58 +00:00

[ssd1325_spi] Combine log statements to reduce loop blocking (#12972)

This commit is contained in:
J. Nick Koston
2026-01-04 16:55:55 -10:00
committed by GitHub
parent 9cd003034c
commit ae3cdeda99

View File

@@ -19,12 +19,14 @@ void SPISSD1325::setup() {
}
void SPISSD1325::dump_config() {
LOG_DISPLAY("", "SPI SSD1325", this);
ESP_LOGCONFIG(TAG, " Model: %s", this->model_str_());
ESP_LOGCONFIG(TAG,
" Model: %s\n"
" Initial Brightness: %.2f\n"
" External VCC: %s",
this->model_str_(), this->brightness_, YESNO(this->external_vcc_));
LOG_PIN(" CS Pin: ", this->cs_);
LOG_PIN(" DC Pin: ", this->dc_pin_);
LOG_PIN(" Reset Pin: ", this->reset_pin_);
ESP_LOGCONFIG(TAG, " Initial Brightness: %.2f", this->brightness_);
ESP_LOGCONFIG(TAG, " External VCC: %s", YESNO(this->external_vcc_));
LOG_UPDATE_INTERVAL(this);
}
void SPISSD1325::command(uint8_t value) {