New board: CYD-E32R32P (#393)

This commit is contained in:
NellowTCS
2025-10-27 12:59:53 -06:00
committed by GitHub
parent 8115ca4fd9
commit 647678ff82
14 changed files with 297 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ std::shared_ptr<EspLcdConfiguration> St7789Display::createEspLcdConfiguration(co
.resetPin = configuration.resetPin,
.lvglColorFormat = LV_COLOR_FORMAT_RGB565,
.lvglSwapBytes = false,
.rgbElementOrder = LCD_RGB_ELEMENT_ORDER_RGB,
.rgbElementOrder = configuration.rgbElementOrder,
.bitsPerPixel = 16,
});
}
+1
View File
@@ -26,6 +26,7 @@ public:
std::shared_ptr<tt::hal::touch::TouchDevice> touch;
std::function<void(uint8_t)> _Nullable backlightDutyFunction;
gpio_num_t resetPin;
lcd_rgb_element_order_t rgbElementOrder = LCD_RGB_ELEMENT_ORDER_RGB;
};
private: