mirror of
https://github.com/esphome/esphome.git
synced 2026-09-22 04:28:43 +00:00
[rpi_dpi_rgb] Combine log statements to reduce loop blocking (#12953)
This commit is contained in:
@@ -126,8 +126,10 @@ void RpiDpiRgb::draw_pixel_at(int x, int y, Color color) {
|
||||
|
||||
void RpiDpiRgb::dump_config() {
|
||||
ESP_LOGCONFIG("", "RPI_DPI_RGB LCD");
|
||||
ESP_LOGCONFIG(TAG, " Height: %u", this->height_);
|
||||
ESP_LOGCONFIG(TAG, " Width: %u", this->width_);
|
||||
ESP_LOGCONFIG(TAG,
|
||||
" Height: %u\n"
|
||||
" Width: %u",
|
||||
this->height_, this->width_);
|
||||
LOG_PIN(" DE Pin: ", this->de_pin_);
|
||||
LOG_PIN(" Enable Pin: ", this->enable_pin_);
|
||||
LOG_PIN(" Reset Pin: ", this->reset_pin_);
|
||||
|
||||
Reference in New Issue
Block a user