ESP-IDF
+
0
/5 examples
SourceVu will show references to
esp_lcd_panel_draw_bitmap()
from the following samples and libraries:
i2c_oled sample
i80_controller sample
rgb_panel 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_draw_bitmap()
esp_lcd_panel_draw_bitmap() function
Draw bitmap on LCD panel
Syntax
Show:
Summary
Declaration
Definition
from
esp_lcd_panel_ops.h:59
esp_err_t
esp_lcd_panel_draw_bitmap
(
esp_lcd_panel_handle_t
panel
,
int
x_start
,
int
y_start
,
int
x_end
,
int
y_end
,
const
void
*
color_data
)
;
Implemented in
esp_lcd_panel_ops.c:32
Arguments
Argument
Declared as
Description
panel
esp_lcd_panel_handle_t
LCD panel handle, which is created by other factory API like `esp_lcd_new_panel_st7789()`
x_start
int
Start pixel index in the target frame buffer, on x-axis (x_start is included)
y_start
int
Start pixel index in the target frame buffer, on y-axis (y_start is included)
x_end
int
End pixel index in the target frame buffer, on x-axis (x_end is not included)
y_end
int
End pixel index in the target frame buffer, on y-axis (y_end is not included)
color_data
const
void
*
RGB color data that will be dumped to the specific window range
Return value
- ESP_OK on success
Related Functions
Found 42 other functions taking a
esp_lcd_panel_t
argument:
Function
Description
esp_lcd_panel_mirror()
Mirror the LCD panel on specific axis
esp_lcd_panel_swap_xy()
Swap/Exchange x and y axis
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_draw_bitmap()
is referenced by 5 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