PicoCamera 0.2.0
Camera library for RP2040 with an esp32-camera compatible API
GitHub
载入中...
搜索中...
未找到
ov3660.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 OV3660_SCCB_ADDR 0x3C // 0x78 >> 1
22#define OV3660_PID 0x3660
23
28int ov3660_detect(sensor_t *sensor);
29
34int ov3660_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