1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-06 11:53:45 +01:00

User configurable frame buffer. (#7360)

This commit is contained in:
ajwahab
2024-09-11 01:20:30 -04:00
committed by GitHub
parent e3ae8cd31e
commit 955a909846
3 changed files with 16 additions and 1 deletions

View File

@@ -145,6 +145,9 @@ class ESP32Camera : public Component, public EntityBase {
/* -- framerates */
void set_max_update_interval(uint32_t max_update_interval);
void set_idle_update_interval(uint32_t idle_update_interval);
/* -- frame buffer */
void set_frame_buffer_mode(camera_grab_mode_t mode);
void set_frame_buffer_count(uint8_t fb_count);
/* public API (derivated) */
void setup() override;