Skip to content

Instantly share code, notes, and snippets.

@adahl5
Created July 27, 2020 22:25
Show Gist options
  • Save adahl5/1c49c0face8ccf39989876276f9e9493 to your computer and use it in GitHub Desktop.
Save adahl5/1c49c0face8ccf39989876276f9e9493 to your computer and use it in GitHub Desktop.
// Include the header file to get access to the MicroPython API
//#include "lib/libc/string0.c"
// Code adapted from https://github.com/espressif/esp32-camera
#include "esp_camera.h"
#include "esp_log.h"
#include "py/nlr.h"
#include "py/obj.h"
#include "py/runtime.h"
#include "py/binary.h"
//WROVER-KIT PIN Map
#include "esp_system.h"
#include "esp_spi_flash.h"
STATIC mp_obj_t init();
STATIC mp_obj_t deinit();
STATIC mp_obj_t capture();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment