找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 4591|回复: 0
打印 上一主题 下一主题
收起左侧

PZ-OV7670摄像头模块资料与stm32源程序

[复制链接]
跳转到指定楼层
楼主
PZ-OV7670摄像头模块--STM32F4测试程序



单片机源程序如下:
  1. #include "system.h"
  2. #include "SysTick.h"
  3. #include "led.h"
  4. #include "usart.h"
  5. #include "tftlcd.h"
  6. #include "malloc.h"
  7. #include "sdio_sdcard.h"
  8. #include "flash.h"
  9. #include "ff.h"
  10. #include "fatfs_app.h"
  11. #include "key.h"
  12. #include "font_show.h"
  13. #include "exti.h"
  14. #include "time.h"
  15. #include "string.h"               
  16. #include "math.h"         
  17. #include "OV7670_DCMI.h"



  18. extern u8 ov_sta;        //在exit.c里面定义
  19. extern u8 ov_frame;        //在time.c里面定义

  20. //更新LCD显示
  21. void camera_refresh(void)
  22. {
  23.         u32 j;
  24.         u16 i;
  25.         u16 color;
  26.         u16 temp;
  27.         if(ov_sta)//有帧中断更新?
  28.         {
  29.                
  30.                 //LCD_Set_Window((tftlcd_data.width-320)/2,(tftlcd_data.height-240)/2,320,240-1);//将显示区域设置到屏幕中央
  31.                 LCD_Set_Window(0,(tftlcd_data.height-240)/2,320-1,240-1);//将显示区域设置到屏幕中央
  32.                
  33.                 OV7670_RRST=0;                                //开始复位读指针
  34.                 OV7670_RCK_L;
  35.                 OV7670_RCK_H;
  36.                 OV7670_RCK_L;
  37.                 OV7670_RRST=1;                                //复位读指针结束
  38.                 OV7670_RCK_H;
  39.                 /*for(i=0;i<240;i++)   //此种方式可以兼容任何彩屏
  40.                 {
  41.                         for(j=0;j<320;j++)
  42.                         {
  43.                                 OV7670_RCK_L;
  44.                                 color=OV7670_DATA;        //读数据
  45.                                 OV7670_RCK_H;
  46.                                 color<<=8;  
  47.                                 OV7670_RCK_L;
  48.                                 color|=OV7670_DATA;        //读数据
  49.                                 OV7670_RCK_H;
  50.                                 LCD_WriteData_Color(color);
  51.                         }
  52.                 }*/
  53.                 for(j=0;j<76800;j++)   //此种方式需清楚TFT内部显示方向控制寄存器值
  54.                 {
  55.                         OV7670_RCK_L;
  56.                         color=OV7670_DATA;        //读数据
  57.                         OV7670_RCK_H;
  58.                         color<<=8;  
  59.                         OV7670_RCK_L;
  60.                         color|=OV7670_DATA;        //读数据
  61.                         OV7670_RCK_H;
  62.                         LCD_WriteData_Color(color);
  63.                         //printf("%x  ",color);
  64.                         //if(j%20==0)printf("\r\n");
  65.                         //delay_us(50);
  66.                 }                                                             
  67.                 ov_sta=0;                                        //清零帧中断标记
  68.                 ov_frame++;

  69.         }
  70. }

  71. const u8*LMODE_TBL[5]={"Auto","Sunny","Cloudy","Office","Home"};
  72. const u8*EFFECTS_TBL[7]={"Normal","Negative","B&W","Redish","Greenish","Bluish","Antique"};        //7种特效

  73. int main()
  74. {       
  75.         u8 i=0;
  76.         u8 key;
  77.         u8 lightmode=0,saturation=2,brightness=2,contrast=2;
  78.         u8 effect=0;
  79.         u8 sbuf[15];
  80.         u8 count;
  81.        
  82.         SysTick_Init(168);
  83.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);  //中断优先级分组 分2组
  84.         LED_Init();
  85.         KEY_Init();
  86.         USART1_Init(9600);
  87.         TFTLCD_Init();                        //LCD初始化
  88.         EN25QXX_Init();                                //初始化EN25Q128          
  89.        
  90.         my_mem_init(SRAMIN);                //初始化内部内存池
  91.        
  92.         FRONT_COLOR=RED;//设置字体为红色
  93. //        while(SD_Init()!=0)
  94. //        {       
  95. //                LCD_ShowString(10,10,tftlcd_data.width,tftlcd_data.height,16,"SD Card Error!");
  96. //        }
  97. //        FATFS_Init();                                                        //为fatfs相关变量申请内存                                 
  98. //          f_mount(fs[0],"0:",1);                                         //挂载SD卡
  99. //         f_mount(fs[1],"1:",1);                                 //挂载FLASH.
  100.                
  101.         LCD_ShowFont12Char(10, 10, "普中科技");
  102.         LCD_ShowFont12Char(10, 30, "www.prechin.net");   
  103.         LCD_ShowFont12Char(10, 50, "摄像头应用--OV7670");
  104.        
  105.         while(OV7670_Init())//初始化OV7670
  106.         {
  107.                 LCD_ShowString(10,80,tftlcd_data.width,tftlcd_data.height,16,"OV7670 Error!");
  108.                 delay_ms(200);
  109.                 LCD_Fill(10,80,239,206,WHITE);
  110.                 delay_ms(200);
  111.         }
  112.         LCD_ShowString(10,80,tftlcd_data.width,tftlcd_data.height,16,"OV7670 OK!     ");
  113.         delay_ms(1500);         
  114.         OV7670_Light_Mode(0);
  115.         OV7670_Color_Saturation(2);
  116.         OV7670_Brightness(2);
  117.         OV7670_Contrast(2);
  118.         OV7670_Special_Effects(0);
  119.                
  120.         TIM4_Init(10000,8399);                        //10Khz计数频率,1秒钟中断                                                                          
  121.         EXTI7_Init();                       
  122.         OV7670_Window_Set(12,176,240,320);        //设置窗口       
  123.           OV7670_CS=0;       
  124.         LCD_Clear(BLACK);
  125.         while(1)
  126.         {
  127.                 key=KEY_Scan(0);
  128.                 if(key)count=20;
  129.                 switch(key)
  130.                 {
  131.                         case KEY_UP:           //灯光模式设置
  132.                                 lightmode++;
  133.                                 if(lightmode>4)lightmode=0;
  134.                                 OV7670_Light_Mode(lightmode);
  135.                                 sprintf((char*)sbuf,"%s",LMODE_TBL[lightmode]);
  136.                                 break;
  137.                         case KEY_DOWN:         //饱和度
  138.                                 saturation++;
  139.                                 if(saturation>4)saturation=0;
  140.                                 OV7670_Color_Saturation(saturation);
  141.                                 sprintf((char*)sbuf,"Saturation:%d",(char)saturation-2);
  142.                                 break;       
  143.                         case KEY_LEFT:        //亮度
  144.                                 brightness++;
  145.                                 if(brightness>4)brightness=0;
  146.                                 OV7670_Brightness(brightness);
  147.                                 sprintf((char*)sbuf,"Brightness:%d",(char)brightness-2);
  148.                                 break;
  149.                         case KEY_RIGHT:     //对比度
  150.                                 contrast++;
  151.                                 if(contrast>4)contrast=0;
  152. ……………………

  153. …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码

所有资料51hei提供下载:
PZ-OV7670摄像头模块.rar (5.42 MB, 下载次数: 95)


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表