ESPHome 2026.1.4
Loading...
Searching...
No Matches
rpi_dpi_rgb.cpp
Go to the documentation of this file.
1#ifdef USE_ESP32_VARIANT_ESP32S3
2#include "rpi_dpi_rgb.h"
3#include "esphome/core/gpio.h"
4#include "esphome/core/log.h"
5
6namespace esphome {
7namespace rpi_dpi_rgb {
8
10 this->reset_display_();
11 esp_lcd_rgb_panel_config_t config{};
12 config.flags.fb_in_psram = 1;
13 config.bounce_buffer_size_px = this->width_ * 10;
14 config.num_fbs = 1;
15 config.timings.h_res = this->width_;
16 config.timings.v_res = this->height_;
17 config.timings.hsync_pulse_width = this->hsync_pulse_width_;
18 config.timings.hsync_back_porch = this->hsync_back_porch_;
19 config.timings.hsync_front_porch = this->hsync_front_porch_;
20 config.timings.vsync_pulse_width = this->vsync_pulse_width_;
21 config.timings.vsync_back_porch = this->vsync_back_porch_;
22 config.timings.vsync_front_porch = this->vsync_front_porch_;
23 config.timings.flags.pclk_active_neg = this->pclk_inverted_;
24 config.timings.pclk_hz = this->pclk_frequency_;
25 config.clk_src = LCD_CLK_SRC_PLL160M;
26 size_t data_pin_count = sizeof(this->data_pins_) / sizeof(this->data_pins_[0]);
27 for (size_t i = 0; i != data_pin_count; i++) {
28 config.data_gpio_nums[i] = this->data_pins_[i]->get_pin();
29 }
30 config.data_width = data_pin_count;
31 config.disp_gpio_num = -1;
32 config.hsync_gpio_num = this->hsync_pin_->get_pin();
33 config.vsync_gpio_num = this->vsync_pin_->get_pin();
34 config.de_gpio_num = this->de_pin_->get_pin();
35 config.pclk_gpio_num = this->pclk_pin_->get_pin();
36 esp_err_t err = esp_lcd_new_rgb_panel(&config, &this->handle_);
37 if (err != ESP_OK) {
38 ESP_LOGE(TAG, "lcd_new_rgb_panel failed: %s", esp_err_to_name(err));
39 this->mark_failed();
40 return;
41 }
42 ESP_ERROR_CHECK(esp_lcd_panel_reset(this->handle_));
43 ESP_ERROR_CHECK(esp_lcd_panel_init(this->handle_));
44}
46 if (this->handle_ != nullptr)
47 esp_lcd_rgb_panel_restart(this->handle_);
48}
49
50void RpiDpiRgb::draw_pixels_at(int x_start, int y_start, int w, int h, const uint8_t *ptr, display::ColorOrder order,
51 display::ColorBitness bitness, bool big_endian, int x_offset, int y_offset, int x_pad) {
52 if (w <= 0 || h <= 0)
53 return;
54 // if color mapping is required, pass the buck.
55 // note that endianness is not considered here - it is assumed to match!
56 if (bitness != display::COLOR_BITNESS_565) {
57 return display::Display::draw_pixels_at(x_start, y_start, w, h, ptr, order, bitness, big_endian, x_offset, y_offset,
58 x_pad);
59 }
60 x_start += this->offset_x_;
61 y_start += this->offset_y_;
62 esp_err_t err = ESP_OK;
63 // x_ and y_offset are offsets into the source buffer, unrelated to our own offsets into the display.
64 if (x_offset == 0 && x_pad == 0 && y_offset == 0) {
65 // we could deal here with a non-zero y_offset, but if x_offset is zero, y_offset probably will be so don't bother
66 err = esp_lcd_panel_draw_bitmap(this->handle_, x_start, y_start, x_start + w, y_start + h, ptr);
67 } else {
68 // draw line by line
69 auto stride = x_offset + w + x_pad;
70 for (int y = 0; y != h; y++) {
71 err = esp_lcd_panel_draw_bitmap(this->handle_, x_start, y + y_start, x_start + w, y + y_start + 1,
72 ptr + ((y + y_offset) * stride + x_offset) * 2);
73 if (err != ESP_OK)
74 break;
75 }
76 }
77 if (err != ESP_OK)
78 ESP_LOGE(TAG, "lcd_lcd_panel_draw_bitmap failed: %s", esp_err_to_name(err));
79}
80
82 switch (this->rotation_) {
85 return this->get_height_internal();
86 default:
87 return this->get_width_internal();
88 }
89}
90
92 switch (this->rotation_) {
95 return this->get_width_internal();
96 default:
97 return this->get_height_internal();
98 }
99}
100
101void RpiDpiRgb::draw_pixel_at(int x, int y, Color color) {
102 if (!this->get_clipping().inside(x, y))
103 return; // NOLINT
104
105 switch (this->rotation_) {
107 break;
109 std::swap(x, y);
110 x = this->width_ - x - 1;
111 break;
113 x = this->width_ - x - 1;
114 y = this->height_ - y - 1;
115 break;
117 std::swap(x, y);
118 y = this->height_ - y - 1;
119 break;
120 }
122
123 this->draw_pixels_at(x, y, 1, 1, (const uint8_t *) &pixel, display::COLOR_ORDER_RGB, display::COLOR_BITNESS_565, true,
124 0, 0, 0);
125 App.feed_wdt();
126}
127
129 ESP_LOGCONFIG("", "RPI_DPI_RGB LCD");
130 ESP_LOGCONFIG(TAG,
131 " Height: %u\n"
132 " Width: %u",
133 this->height_, this->width_);
134 LOG_PIN(" DE Pin: ", this->de_pin_);
135 LOG_PIN(" Enable Pin: ", this->enable_pin_);
136 LOG_PIN(" Reset Pin: ", this->reset_pin_);
137 size_t data_pin_count = sizeof(this->data_pins_) / sizeof(this->data_pins_[0]);
138 char pin_summary[GPIO_SUMMARY_MAX_LEN];
139 for (size_t i = 0; i != data_pin_count; i++) {
140 this->data_pins_[i]->dump_summary(pin_summary, sizeof(pin_summary));
141 ESP_LOGCONFIG(TAG, " Data pin %d: %s", i, pin_summary);
142 }
143}
144
146 if (this->reset_pin_ != nullptr) {
147 this->reset_pin_->setup();
148 this->reset_pin_->digital_write(false);
149 if (this->enable_pin_ != nullptr) {
150 this->enable_pin_->setup();
151 this->enable_pin_->digital_write(false);
152 }
153 delay(1);
154 this->reset_pin_->digital_write(true);
155 if (this->enable_pin_ != nullptr) {
156 delay(11);
157 this->enable_pin_->digital_write(true);
158 }
159 }
160}
161
162} // namespace rpi_dpi_rgb
163} // namespace esphome
164
165#endif // USE_ESP32_VARIANT_ESP32S3
uint8_t h
Definition bl0906.h:2
void feed_wdt(uint32_t time=0)
virtual void mark_failed()
Mark this component as failed.
virtual void setup()=0
virtual void digital_write(bool value)=0
virtual size_t dump_summary(char *buffer, size_t len) const
Write a summary of this pin to the provided buffer.
Definition gpio.h:129
virtual uint8_t get_pin() const =0
static uint16_t color_to_565(Color color, ColorOrder color_order=ColorOrder::COLOR_ORDER_RGB)
Rect get_clipping() const
Get the current the clipping rectangle.
Definition display.cpp:764
DisplayRotation rotation_
Definition display.h:790
virtual void draw_pixels_at(int x_start, int y_start, int w, int h, const uint8_t *ptr, ColorOrder order, ColorBitness bitness, bool big_endian, int x_offset, int y_offset, int x_pad)
Given an array of pixels encoded in the nominated format, draw these into the display's buffer.
Definition display.cpp:55
InternalGPIOPin * data_pins_[16]
Definition rpi_dpi_rgb.h:75
void draw_pixels_at(int x_start, int y_start, int w, int h, const uint8_t *ptr, display::ColorOrder order, display::ColorBitness bitness, bool big_endian, int x_offset, int y_offset, int x_pad) override
esp_lcd_panel_handle_t handle_
Definition rpi_dpi_rgb.h:92
void draw_pixel_at(int x, int y, Color color) override
@ DISPLAY_ROTATION_0_DEGREES
Definition display.h:135
@ DISPLAY_ROTATION_270_DEGREES
Definition display.h:138
@ DISPLAY_ROTATION_180_DEGREES
Definition display.h:137
@ DISPLAY_ROTATION_90_DEGREES
Definition display.h:136
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
constexpr T convert_big_endian(T val)
Convert a value between host byte order and big endian (most significant byte first) order.
Definition helpers.h:519
constexpr size_t GPIO_SUMMARY_MAX_LEN
Maximum buffer size for dump_summary output.
Definition gpio.h:13
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:26
Application App
Global storage of Application pointer - only one Application can exist.
uint16_t x
Definition tt21100.cpp:5
uint16_t y
Definition tt21100.cpp:6