Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.05 KB

README.md

File metadata and controls

executable file
·
31 lines (22 loc) · 1.05 KB

ESP32WiFiCAM-OV7670(w/FIFO)

figure

ESP32 WiFi Camera application has following functions.

  1. take pictures in VGA size and Bayer RAW format
  2. save pictures to the SD Memory card
  3. upload pictures to the RAW Image Convert Service that is running on AWS
  4. notify users using AWS SNS (Simple Notification Service)

Following parts are used

parts type parts name
MicroController ESP32
Camera Unit OV7670 Camera with FIFO
Monitor 1.8inch TFT LCD(ST7735)
Memory SD Memory Card

ESP32WiFiCAM is implemented in MicroPython

The following drivers are required to execute this application.

  1. sdcard.py
    https://github.com/micropython/micropython/tree/master/drivers/sdcard
  2. ST7735.py
    https://github.com/boochow/MicroPython-ST7735
  3. terminalfont.py
    https://github.com/GuyCarver/MicroPython/tree/master/lib

This system has been tested with MicroPython (V1.10) due to development schedule and processing speed. Not tested in the latest version; MicroPython (V1.20).

All files are subject to MIT license.