Function esp_idf_sys::esp_lcd_panel_mirror
source ยท pub unsafe extern "C" fn esp_lcd_panel_mirror(
panel: esp_lcd_panel_handle_t,
mirror_x: bool,
mirror_y: bool,
) -> esp_err_t
Expand description
@brief Mirror the LCD panel on specific axis
@note Combined with esp_lcd_panel_swap_xy()
, one can realize screen rotation
@param[in] panel LCD panel handle, which is created by other factory API like esp_lcd_new_panel_st7789()
@param[in] mirror_x Whether the panel will be mirrored about the x axis
@param[in] mirror_y Whether the panel will be mirrored about the y axis
@return
- ESP_OK on success
- ESP_ERR_NOT_SUPPORTED if this function is not supported by the panel