Skip to main content

CircuitPython driver for OV2640 cameras

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

CircuitPython driver for OV2640 Camera.

This driver is designed to work directly with the OV2640 camera module through an 18-pin header. It does not work with products such as ArduCam which process the camera data themselves.

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.

Usage Example

Using the ESP32-S2 Kaluga Dev Kit and its included camera, capture a 160x120 image into a buffer:

import board
from adafruit_ov2640 import OV2640, OV2640_SIZE_QQVGA

bus = busio.I2C(scl=board.CAMERA_SIOC, sda=board.CAMERA_SIOD)
cam = OV2640(
    bus,
    data_pins=board.CAMERA_DATA,
    clock=board.CAMERA_PCLK,
    vsync=board.CAMERA_VSYNC,
    href=board.CAMERA_HREF,
    mclk=board.CAMERA_XCLK,
    size=OV2640_SIZE_QQVGA,
)
buf = bytearray(2 * cam.width * cam.height)

cam.capture(buf)

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit-circuitpython-ov2640-1.2.0.tar.gz (39.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit-circuitpython-ov2640-1.2.0.tar.gz.

File metadata

File hashes

Hashes for adafruit-circuitpython-ov2640-1.2.0.tar.gz
Algorithm Hash digest
SHA256 53de098819f99101faeead6f2393f210dc843d6c9cab1bf2640a5f151fd417a7
MD5 1ef58b9a97320ad079a61ca7f6525318
BLAKE2b-256 4095ba47534f846fd48dfece62a10fd87ecd3ee512805865004fa154d1de705a

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_ov2640-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_ov2640-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7b431c56ad3f9f1c4699f02aeb820990fa774d9fc81ef6ee39458e4fccc7bd56
MD5 e35f5562ac880a6f7e872ddcb74de695
BLAKE2b-256 f92d7c4ce4cbd669aa768f256f07dc203904aaf645bde02bc964110730dabcff

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page