ESPHome  2024.5.0
rpi_dpi_rgb.h
Go to the documentation of this file.
1 //
2 // Created by Clyde Stubbs on 29/10/2023.
3 //
4 #pragma once
5 
6 // only applicable on ESP32-S3
7 #ifdef USE_ESP32_VARIANT_ESP32S3
9 #include "esphome/core/gpio.h"
10 #include "esphome/core/log.h"
13 #include "esp_lcd_panel_ops.h"
14 
15 #include "esp_lcd_panel_rgb.h"
16 
17 namespace esphome {
18 namespace rpi_dpi_rgb {
19 
20 constexpr static const char *const TAG = "rpi_dpi_rgb";
21 
22 class RpiDpiRgb : public display::Display {
23  public:
24  void update() override { this->do_update_(); }
25  void setup() override;
26  void draw_pixels_at(int x_start, int y_start, int w, int h, const uint8_t *ptr, display::ColorOrder order,
27  display::ColorBitness bitness, bool big_endian, int x_offset, int y_offset, int x_pad) override;
28  void draw_pixel_at(int x, int y, Color color) override;
29 
31  void set_color_mode(display::ColorOrder color_mode) { this->color_mode_ = color_mode; }
32  void set_invert_colors(bool invert_colors) { this->invert_colors_ = invert_colors; }
33 
34  void add_data_pin(InternalGPIOPin *data_pin, size_t index) { this->data_pins_[index] = data_pin; };
35  void set_de_pin(InternalGPIOPin *de_pin) { this->de_pin_ = de_pin; }
36  void set_pclk_pin(InternalGPIOPin *pclk_pin) { this->pclk_pin_ = pclk_pin; }
37  void set_vsync_pin(InternalGPIOPin *vsync_pin) { this->vsync_pin_ = vsync_pin; }
38  void set_hsync_pin(InternalGPIOPin *hsync_pin) { this->hsync_pin_ = hsync_pin; }
39  void set_reset_pin(GPIOPin *reset_pin) { this->reset_pin_ = reset_pin; }
40  void set_width(uint16_t width) { this->width_ = width; }
41  void set_dimensions(uint16_t width, uint16_t height) {
42  this->width_ = width;
43  this->height_ = height;
44  }
45  int get_width() override { return this->width_; }
46  int get_height() override { return this->height_; }
47  void set_hsync_back_porch(uint16_t hsync_back_porch) { this->hsync_back_porch_ = hsync_back_porch; }
48  void set_hsync_front_porch(uint16_t hsync_front_porch) { this->hsync_front_porch_ = hsync_front_porch; }
49  void set_hsync_pulse_width(uint16_t hsync_pulse_width) { this->hsync_pulse_width_ = hsync_pulse_width; }
50  void set_vsync_pulse_width(uint16_t vsync_pulse_width) { this->vsync_pulse_width_ = vsync_pulse_width; }
51  void set_vsync_back_porch(uint16_t vsync_back_porch) { this->vsync_back_porch_ = vsync_back_porch; }
52  void set_vsync_front_porch(uint16_t vsync_front_porch) { this->vsync_front_porch_ = vsync_front_porch; }
53  void set_pclk_frequency(uint32_t pclk_frequency) { this->pclk_frequency_ = pclk_frequency; }
54  void set_pclk_inverted(bool inverted) { this->pclk_inverted_ = inverted; }
55  void set_offsets(int16_t offset_x, int16_t offset_y) {
56  this->offset_x_ = offset_x;
57  this->offset_y_ = offset_y;
58  }
60  void dump_config() override;
61 
62  protected:
63  int get_width_internal() override { return this->width_; }
64  int get_height_internal() override { return this->height_; }
69  GPIOPin *reset_pin_{nullptr};
71  uint16_t hsync_front_porch_ = 8;
72  uint16_t hsync_pulse_width_ = 4;
73  uint16_t hsync_back_porch_ = 8;
74  uint16_t vsync_front_porch_ = 8;
75  uint16_t vsync_pulse_width_ = 4;
76  uint16_t vsync_back_porch_ = 8;
77  uint32_t pclk_frequency_ = 16 * 1000 * 1000;
78  bool pclk_inverted_{true};
79 
82  size_t width_{};
83  size_t height_{};
84  int16_t offset_x_{0};
85  int16_t offset_y_{0};
86 
87  esp_lcd_panel_handle_t handle_{};
88 };
89 
90 } // namespace rpi_dpi_rgb
91 } // namespace esphome
92 #endif // USE_ESP32_VARIANT_ESP32S3
void set_hsync_pulse_width(uint16_t hsync_pulse_width)
Definition: rpi_dpi_rgb.h:49
InternalGPIOPin * data_pins_[16]
Definition: rpi_dpi_rgb.h:70
void set_hsync_back_porch(uint16_t hsync_back_porch)
Definition: rpi_dpi_rgb.h:47
void set_color_mode(display::ColorOrder color_mode)
Definition: rpi_dpi_rgb.h:31
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
Definition: rpi_dpi_rgb.cpp:44
void set_de_pin(InternalGPIOPin *de_pin)
Definition: rpi_dpi_rgb.h:35
uint16_t x
Definition: tt21100.cpp:17
int get_height_internal() override
Definition: rpi_dpi_rgb.h:64
void set_reset_pin(GPIOPin *reset_pin)
Definition: rpi_dpi_rgb.h:39
void set_offsets(int16_t offset_x, int16_t offset_y)
Definition: rpi_dpi_rgb.h:55
display::ColorOrder color_mode_
Definition: rpi_dpi_rgb.h:81
uint16_t y
Definition: tt21100.cpp:18
void set_hsync_front_porch(uint16_t hsync_front_porch)
Definition: rpi_dpi_rgb.h:48
void add_data_pin(InternalGPIOPin *data_pin, size_t index)
Definition: rpi_dpi_rgb.h:34
void set_vsync_pin(InternalGPIOPin *vsync_pin)
Definition: rpi_dpi_rgb.h:37
void set_width(uint16_t width)
Definition: rpi_dpi_rgb.h:40
void set_dimensions(uint16_t width, uint16_t height)
Definition: rpi_dpi_rgb.h:41
void set_pclk_frequency(uint32_t pclk_frequency)
Definition: rpi_dpi_rgb.h:53
int get_width_internal() override
Definition: rpi_dpi_rgb.h:63
InternalGPIOPin * pclk_pin_
Definition: rpi_dpi_rgb.h:66
void set_vsync_pulse_width(uint16_t vsync_pulse_width)
Definition: rpi_dpi_rgb.h:50
void set_vsync_back_porch(uint16_t vsync_back_porch)
Definition: rpi_dpi_rgb.h:51
InternalGPIOPin * vsync_pin_
Definition: rpi_dpi_rgb.h:68
void set_pclk_pin(InternalGPIOPin *pclk_pin)
Definition: rpi_dpi_rgb.h:36
uint8_t h
Definition: bl0939.h:21
display::DisplayType get_display_type() override
Definition: rpi_dpi_rgb.h:59
void set_hsync_pin(InternalGPIOPin *hsync_pin)
Definition: rpi_dpi_rgb.h:38
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
void set_vsync_front_porch(uint16_t vsync_front_porch)
Definition: rpi_dpi_rgb.h:52
InternalGPIOPin * hsync_pin_
Definition: rpi_dpi_rgb.h:67
void set_pclk_inverted(bool inverted)
Definition: rpi_dpi_rgb.h:54
void set_invert_colors(bool invert_colors)
Definition: rpi_dpi_rgb.h:32
esp_lcd_panel_handle_t handle_
Definition: rpi_dpi_rgb.h:87
void draw_pixel_at(int x, int y, Color color) override
Definition: rpi_dpi_rgb.cpp:75
display::ColorOrder get_color_mode()
Definition: rpi_dpi_rgb.h:30