找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 2414|回复: 1
收起左侧

基于stm32f407的GY-30光照模块源程序

[复制链接]
ID:825611 发表于 2020-10-4 09:18 | 显示全部楼层 |阅读模式
这是我前段时间调的光照模块,感觉还行,基本使用一下没问题,代码在压缩包里

单片机源程序如下:

  1. #include "sys.h"
  2. #include "delay.h"
  3. #include "usart.h"
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include "stm32f4xx.h"

  8. #include "BH1750.h"

  9.         u8 t;
  10.         u8 len;       
  11.         u16 times=0;
  12. unsigned char        BUF[8];         /* 读取光强中间量 */
  13. int                dis_data;       /* 读取光强中间量 */
  14. int                mcy;            /* 读取光强中间量 */
  15. float                lightPower;     /* 存储光强的变量 */

  16. extern struct ds1302time time;  /* 1302时间 */

  17. char        xianshi[30];
  18. u8        tmp_buf[33];            /* 24l02接受buf */



  19. int main( void )
  20. {
  21.         u8        t                = 0;
  22.         NVIC_PriorityGroupConfig( NVIC_PriorityGroup_2 );               /* 设置NVIC中断分组2:2位抢占优先级,2位响应优先级 */
  23.         delay_init(168);                                                   /* 延时函数初始化 */


  24.         uart_init( 115200 );                                              /* uart */


  25. Init_BH1750();      /* init BH1750 */


  26.         while ( 1 )
  27.         {
  28.                

  29.                 delay_ms( 5 );
  30.                 t++;
  31.                 if ( t > 40 )
  32.                 {
  33.                        


  34.                         mread();                                        /* 连续读取gy30数据 */
  35.                         dis_data        = BUF[0];
  36.                         dis_data        = (dis_data << 8) + BUF[1];     /* 合成数据 */
  37.                         lightPower        = (float) dis_data / 1.2;       /* 得出光强  单位是lx */
  38.                         Single_Write_BH1750( 0x01 );                    /* power on */
  39.                         Single_Write_BH1750( 0x10 );                    /* H- resolution mode */


  40.                         t = 0;
  41.                         if(USART_RX_STA&0x8000)
  42.                 {                                          
  43.                         len=USART_RX_STA&0x3fff;//得到此次接收到的数据长度
  44.                         for(t=0;t<len;t++)
  45.                         {
  46.                                 USART_SendData(USART1, USART_RX_BUF[t]);         //向串口2发送数据
  47.                                 while(USART_GetFlagStatus(USART1,USART_FLAG_TC)!=SET);//等待发送结束
  48.                         }
  49.                         printf("\r\n lightPower:%f",lightPower);//插入换行
  50.                         USART_RX_STA=0;
  51.                  delay_ms(5);
  52.           }
  53.                 }
  54.                
  55.                
  56. }

  57. }
复制代码
  1. #include "BH1750.h"

  2. void GPIOConfig( void )
  3. {
  4.         GPIO_InitTypeDef GPIO_InitStruct;

  5.         /*开启GPIOB的外设时钟*/
  6.         RCC_AHB1PeriphClockCmd ( RCC_AHB1Periph_GPIOB, ENABLE );

  7.         GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
  8.         GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
  9.         GPIO_InitStruct.GPIO_Speed        = GPIO_Speed_50MHz;
  10.         GPIO_InitStruct.GPIO_Pin        = sda | scl;
  11.         GPIO_Init( GPIOB, &GPIO_InitStruct );
  12. }


  13. void Delay_5us( void )
  14. {
  15.         delay_us(5);
  16. }


  17. void Delay_mms( unsigned int tmp )
  18. {
  19.         unsigned int i = 0;
  20.         while ( tmp-- )
  21.         {
  22.                 delay_us(5);
  23.         }
  24. }


  25. /***开始信号***/
  26. void BH1750_Start()
  27. {
  28.         GPIO_SetBits( GPIOB, sda );     /* 拉高数据线 */
  29.         GPIO_SetBits( GPIOB, scl );     /* 拉高时钟线 */
  30.         Delay_5us();                    /* 延时 */
  31.         GPIO_ResetBits( GPIOB, sda );   /* 产生下降沿 */
  32.         Delay_5us();                    /* 延时 */
  33.         GPIO_ResetBits( GPIOB, scl );   /* 拉低时钟线 */
  34. }


  35. /*****停止信号******/
  36. void BH1750_Stop()
  37. {
  38.         GPIO_ResetBits( GPIOB, sda );   /* 拉低数据线 */
  39.         GPIO_SetBits( GPIOB, scl );     /* 拉高时钟线 */
  40.         Delay_5us();                    /* 延时 */
  41.         GPIO_SetBits( GPIOB, sda );     /* 产生上升沿 */
  42.         Delay_5us();                    /* 延时 */
  43. }


  44. /**************************************
  45. *  发送应答信号
  46. *  入口参数:ack (0:ACK 1:NAK)
  47. **************************************/
  48. void BH1750_SendACK( unsigned int ack )
  49. {
  50.         GPIO_InitTypeDef GPIO_InitStruct;

  51.         GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
  52.         GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
  53.         GPIO_InitStruct.GPIO_Speed        = GPIO_Speed_50MHz;
  54.         GPIO_InitStruct.GPIO_Pin        = sda;
  55.         GPIO_Init( GPIOB, &GPIO_InitStruct );


  56.         if ( ack == 1 )                 /* 写应答信号 */
  57.                 GPIO_SetBits( GPIOB, sda );
  58.         else if ( ack == 0 )
  59.                 GPIO_ResetBits( GPIOB, sda );
  60.         else
  61.                 return;

  62.         GPIO_SetBits( GPIOB, scl );     /* 拉高时钟线 */
  63.         Delay_5us();                    /* 延时 */
  64.         GPIO_ResetBits( GPIOB, scl );   /* 拉低时钟线 */
  65.         Delay_5us();                    /* 延时 */
  66. }


  67. /**************************************
  68. *  接收应答信号
  69. **************************************/
  70. unsigned int BH1750_RecvACK()
  71. {
  72.         GPIO_InitTypeDef GPIO_InitStruct;

  73.         GPIO_InitStruct.GPIO_Mode        = GPIO_Mode_IN;        /*这里一定要设成输入上拉,否则不能读出数据*/
  74.         GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;      
  75.         GPIO_InitStruct.GPIO_Speed        = GPIO_Speed_50MHz;
  76.         GPIO_InitStruct.GPIO_Pin        = sda;
  77.         GPIO_Init( GPIOB, &GPIO_InitStruct );

  78.         GPIO_SetBits( GPIOB, scl );                             /* 拉高时钟线 */
  79.         Delay_5us();                                            /* 延时 */

  80.         if ( GPIO_ReadInputDataBit( GPIOB, sda ) == 1 )         /* 读应答信号 */
  81.                 mcy = 1;
  82.         else
  83.                 mcy = 0;

  84.         GPIO_ResetBits( GPIOB, scl );                           /* 拉低时钟线 */
  85.         Delay_5us();                                            /* 延时 */

  86.         GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
  87.         GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
  88.         GPIO_Init( GPIOB, &GPIO_InitStruct );

  89.         return(mcy);
  90. }


  91. /**************************************
  92. *  向IIC总线发送一个字节数据
  93. **************************************/
  94. void BH1750_SendByte( unsigned char dat )
  95. {
  96.         unsigned char i;

  97.         for ( i = 0; i < 8; i++ ) /* 8位计数器 */
  98.         {
  99.                 if ( 0X80 & dat )
  100.                         GPIO_SetBits( GPIOB, sda );
  101.                 else
  102.                         GPIO_ResetBits( GPIOB, sda );

  103.                 dat <<= 1;
  104.                 GPIO_SetBits( GPIOB, scl );     /* 拉高时钟线 */
  105.                 Delay_5us();                    /* 延时 */
  106.                 GPIO_ResetBits( GPIOB, scl );   /* 拉低时钟线 */
  107.                 Delay_5us();                    /* 延时 */
  108.         }
  109.         BH1750_RecvACK();
  110. }


  111. unsigned char BH1750_RecvByte()
  112. {
  113.         unsigned char        i;
  114.         unsigned char        dat = 0;
  115.         unsigned char        bit;

  116.         GPIO_InitTypeDef GPIO_InitStruct;

  117.         GPIO_InitStruct.GPIO_Mode        = GPIO_Mode_IN;        /*这里一定要设成输入上拉,否则不能读出数据*/
  118.         GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;
  119.         GPIO_InitStruct.GPIO_Pin        = sda;
  120.         GPIO_InitStruct.GPIO_Speed        = GPIO_Speed_50MHz;
  121.        
  122.         GPIO_Init( GPIOB, &GPIO_InitStruct );

  123.         GPIO_SetBits( GPIOB, sda );                             /* 使能内部上拉,准备读取数据, */
  124.         for ( i = 0; i < 8; i++ )                               /* 8位计数器 */
  125.         {
  126.                 dat <<= 1;
  127.                 GPIO_SetBits( GPIOB, scl );                     /* 拉高时钟线 */
  128.                 Delay_5us();                                    /* 延时 */

  129.                 if ( SET == GPIO_ReadInputDataBit( GPIOB, sda ) )
  130.                         bit = 0X01;
  131.                 else
  132.                         bit = 0x00;

  133.                 dat |= bit;                                     /* 读数据 */

  134.                 GPIO_ResetBits( GPIOB, scl );                   /* 拉低时钟线 */
  135.                 Delay_5us();                                    /* 延时 */
  136.         }

  137.         GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;
  138.         GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;
  139.         GPIO_Init( GPIOB, &GPIO_InitStruct );
  140.         return(dat);
  141. }


  142. void Single_Write_BH1750( unsigned char REG_Address )
  143. {
  144.         BH1750_Start();                         /* 起始信号 */
  145.         BH1750_SendByte( SlaveAddress );        /* 发送设备地址+写信号 */
  146.         BH1750_SendByte( REG_Address );         /* 内部寄存器地址,请参考中文pdf22页 */
  147.         /*  BH1750_SendByte(REG_data);       //内部寄存器数据,请参考中文pdf22页 */
  148.         BH1750_Stop();                          /* 发送停止信号 */
  149. }


  150. /* 初始化BH1750,根据需要请参考pdf进行修改**** */
  151. void Init_BH1750()
  152. {
  153.         GPIOConfig();
  154.         Single_Write_BH1750( 0x01 );
  155. }


  156. /* 连续读出BH1750内部数据 */
  157. void mread( void )
  158. {
  159.         unsigned char i;
  160.         BH1750_Start();                         /* 起始信号 */
  161.         BH1750_SendByte( SlaveAddress + 1 );    /* 发送设备地址+读信号 */

  162.         for ( i = 0; i < 3; i++ )               /* 连续读取6个地址数据,存储中BUF */
  163.         {
  164.                 BUF[i] = BH1750_RecvByte();     /* BUF[0]存储0x32地址中的数据 */
  165.                 if ( i == 3 )
  166.                 {
  167.                         BH1750_SendACK( 1 );    /* 最后一个数据需要回NOACK */
  168.                 }else  {
  169.                         BH1750_SendACK( 0 );    /* 回应ACK */
  170.                 }
  171.         }

  172.         BH1750_Stop();                          /* 停止信号 */
  173.         Delay_mms( 5 );
  174. }
复制代码


所有资料51hei提供下载:
GY-30_f407.7z (301.84 KB, 下载次数: 53)

评分

参与人数 1黑币 +50 收起 理由
admin + 50 共享资料的黑币奖励!

查看全部评分

回复

使用道具 举报

ID:954693 发表于 2021-7-29 14:18 | 显示全部楼层
为什么程序都没有效果的
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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