save_picture.h 230 B

123456789101112131415
  1. #ifndef SAVE_PICTURE_H
  2. #define SAVE_PICTURE_H
  3. #include <esp_camera.h>
  4. #include <SD_MMC.h>
  5. #include "globals.h"
  6. /**
  7. * Save the current picture to the onboard SD card.
  8. * @todo - Future feature.
  9. */
  10. void save_picture();
  11. #endif