camera_config.h 256 B

1234567891011121314
  1. #ifndef CAMERA_CONFIG_H
  2. #define CAMERA_CONFIG_H
  3. #include <esp_camera.h>
  4. #include "pins.h"
  5. /** The camera configuration model. */
  6. extern camera_config_t camera_config;
  7. /** Initialize the camera configuration. */
  8. void initialize_camera_config();
  9. #endif