ESP-IDF
+
0
/3 examples
SourceVu will show references to
esp_lcd_panel_mirror()
from the following samples and libraries:
i2c_oled sample
spi_lcd_touch sample
tjpgd sample
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
esp_lcd_panel_mirror()
esp_lcd_panel_mirror() function
Mirror the LCD panel on specific axis
Syntax
Show:
Summary
Declaration
Definition
from
esp_lcd_panel_ops.h:73
esp_err_t
esp_lcd_panel_mirror
(
esp_lcd_panel_handle_t
panel
,
bool
mirror_x
,
bool
mirror_y
)
;
Implemented in
esp_lcd_panel_ops.c:40
Arguments
Argument
Description
panel
LCD panel handle, which is created by other factory API like `esp_lcd_new_panel_st7789()`
mirror_x
Whether the panel will be mirrored about the x axis
mirror_y
Whether the panel will be mirrored about the y axis
Return value
- ESP_OK on success - ESP_ERR_NOT_SUPPORTED if this function is not supported by the panel
Notes
Combined with `esp_lcd_panel_swap_xy()`, one can realize screen rotation
Related Functions
Found 42 other functions taking a
esp_lcd_panel_t
argument:
Function
Description
esp_lcd_panel_swap_xy()
Swap/Exchange x and y axis
esp_lcd_panel_draw_bitmap()
Draw bitmap on LCD panel
esp_lcd_panel_disp_on_off()
Turn on or off the display
esp_lcd_panel_reset()
Reset LCD panel
esp_lcd_panel_init()
Initialize LCD panel
esp_lcd_panel_invert_color()
Invert the color (bit-wise invert the color data line)
esp_lcd_new_panel_st7789()
Create LCD panel for model ST7789
panel_nt35510_reset()
panel_nt35510_del()
panel_nt35510_draw_bitmap()
panel_nt35510_init()
panel_nt35510_invert_color()
panel_nt35510_set_gap()
panel_nt35510_disp_on_off()
panel_nt35510_mirror()
panel_nt35510_swap_xy()
panel_nt35510_sleep()
esp_lcd_panel_set_gap()
Set extra gap in x and y axis The gap is the space (in pixels) between the left/top sides of the LCD panel and the first row/column respectively of the actual contents displayed.
esp_lcd_new_panel_ssd1306()
Create LCD panel for model SSD1306 esp_lcd_panel_ssd1306_config_t ssd1306_config = { .height = 32 }; esp_lcd_panel_dev_config_t panel_config = { .vendor_config = &ssd1306_config }; esp_lcd_panel_handle_t panel_handle = NULL; esp_lcd_new_panel_ssd1306(io_handle, &panel_config, &panel_handle);
panel_ssd1306_del()
panel_ssd1306_init()
panel_ssd1306_reset()
panel_ssd1306_draw_bitmap()
panel_ssd1306_swap_xy()
panel_ssd1306_set_gap()
panel_ssd1306_disp_on_off()
panel_ssd1306_mirror()
panel_ssd1306_invert_color()
panel_st7789_del()
panel_st7789_reset()
panel_st7789_draw_bitmap()
panel_st7789_init()
panel_st7789_mirror()
panel_st7789_set_gap()
panel_st7789_disp_on_off()
panel_st7789_invert_color()
panel_st7789_swap_xy()
panel_st7789_sleep()
esp_lcd_new_panel_nt35510()
Create LCD panel for model NT35510
esp_lcd_panel_del()
Deinitialize the LCD panel
esp_lcd_panel_disp_off()
Turn off the display
esp_lcd_panel_disp_sleep()
Enter or exit sleep mode
Examples
esp_lcd_panel_mirror()
is referenced by 3 libraries and example projects:
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out