• 已解决 73482 个问题
  • 已帮助 5993 位优秀工程师

ov2640亮度调节是哪个寄存器

yhj416606438 2021-10-04 浏览量:397
不用亮度自动增益,请问那个是亮度调节寄存器
0 0 收起

我来回答

上传资料:
选择文件 文件大小不超过15M(格式支持:doc、ppt、xls、pdf、zip、rar、txt)
最佳答案
  • OV2640 Software Application Notes 1.04中的亮度设置如下。不过里面说越亮图片越模糊。
    Brightness +2
    SCCB_salve_Address = 0x60;
    write_SCCB(0xff 0x00);
    write_SCCB(0x7c 0x00);
    write_SCCB(0x7d 0x04);
    write_SCCB(0x7c 0x09);
    write_SCCB(0x7d 0x40);
    write_SCCB(0x7d 0x00);
    Brightness +1
    SCCB_salve_Address = 0x60;
    write_SCCB(0xff 0x00);
    write_SCCB(0x7c 0x00);
    write_SCCB(0x7d 0x04);
    write_SCCB(0x7c 0x09);
    write_SCCB(0x7d 0x30);
    write_SCCB(0x7d 0x00);
    Brightness 0
    SCCB_salve_Address = 0x60;
    write_SCCB(0xff 0x00);
    write_SCCB(0x7c 0x00);
    write_SCCB(0x7d 0x04);
    write_SCCB(0x7c 0x09);
    write_SCCB(0x7d 0x20);
    write_SCCB(0x7d 0x00);
    Brightness -1
    SCCB_salve_Address = 0x60;
    write_SCCB(0xff 0x00);
    write_SCCB(0x7c 0x00);
    write_SCCB(0x7d 0x04);
    write_SCCB(0x7c 0x09);
    write_SCCB(0x7d 0x10);
    write_SCCB(0x7d 0x00);
    Brightness -2
    SCCB_salve_Address = 0x60;
    write_SCCB(0xff 0x00);
    write_SCCB(0x7c 0x00);
    write_SCCB(0x7d 0x04);
    write_SCCB(0x7c 0x09);
    write_SCCB(0x7d 0x00);
    write_SCCB(0x7d 0x00);
    • 发布于 2021-10-20
    • 举报
    • 评论 0
    • 0
    • 0

其他答案 数量:1
  • 一般不是直接配置寄存器的,是有一个库里的结构体来实现的
    • 发布于2021-10-19
    • 举报
    • 评论 0
    • 0
    • 0

相关问题

问题达人换一批

ov2640亮度调节是哪个寄存器