PicoCamera 0.2.0
Camera library for RP2040 with an esp32-camera compatible API
GitHub
载入中...
搜索中...
未找到
ov2640.h
浏览该文件的文档.
1/*
2 * This file is part of the PicoCamera project.
3 * https://github.com/umeiko/PicoCamera
4 *
5 * Author: umeko <umeko@stu.xmu.edu.cn>
6 * License: MIT
7 */
8
13#pragma once
14
15#include "../sensor.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21#define OV2640_SCCB_ADDR 0x30 // 0x60 >> 1
22#define OV2640_PID 0x2642
23
28int ov2640_detect(sensor_t *sensor);
29
34int ov2640_init_sensor(sensor_t *sensor);
35
36#ifdef __cplusplus
37}
38#endif
Common camera sensor types, aligned with esp32-camera's sensor.h (subset).
English version