欧美极品高清xxxxhd,国产日产欧美最新,无码AV国产东京热AV无码,国产精品人与动性XXX,国产传媒亚洲综合一区二区,四库影院永久国产精品,毛片免费免费高清视频,福利所导航夜趣136

標題: STM32_BMP280資料+源代碼 [打印本頁]

作者: 569099575    時間: 2019-4-12 15:33
標題: STM32_BMP280資料+源代碼
STM32_BMP280

單片機源程序如下:
  1. #include "sys.h"
  2. #include "delay.h"
  3. #include "usart.h"
  4. #include "led.h"
  5. #include "myiic.h"
  6. #include "bme280.h"

  7. int main(void)
  8. {
  9.         float bmp280_temp;
  10.         float bmp280_press;
  11.         float bmp280_humi;
  12.         float high;
  13.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);                            //設置中斷優先級分組2
  14.         uart_init(9600);                                                           //初始化USART
  15.         LED_Init();                                                                //初始化LED
  16.     IIC_Init();       
  17.         delay_init();
  18.         bme280Init();
  19.     while(1)
  20.     {
  21.         bme280GetData(&bmp280_press,&bmp280_temp,&bmp280_humi,&high);
  22.                 delay_ms(1500);
  23.                 LED0=!LED0;
  24.                 printf("bmp280_press:%f\r\n",bmp280_press);
  25.                 delay_ms(100);
  26.                 printf("bmp280_temp :%f\r\n",bmp280_temp);
  27.                 delay_ms(100);
  28.                 printf("bmp280_humidity :%f\r\n",bmp280_humi);
  29.                 delay_ms(100);
  30.                 printf("bmp280_high :%f\r\n\r\n",high);
  31.         }
  32. }
復制代碼

所有資料51hei提供下載:
BME280_STM32.zip (2.88 MB, 下載次數: 488)







歡迎光臨 (http://www.raoushi.com/bbs/) Powered by Discuz! X3.1