找回密码
 立即注册

QQ登录

只需一步,快速开始

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

arduino空气质量检测

[复制链接]
跳转到指定楼层
楼主
ID:431677 发表于 2020-2-16 15:49 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本系统主要是通过arduino控制激光粉尘传感器来检测空气中的PM2.5及其他气体含量,并在lcd1602上显示出来。具体详细代码在压缩包。
  1. #include <Arduino.h>
  2. #include <LiquidCrystal.h>
  3. LiquidCrystal lcd( 7, 6, 5, 4, 3, 2);
  4. #define LENG 31   //0x42 + 31 bytes equal to 32 bytes
  5. unsigned char buf[LENG];

  6. int PM01Value=0;          //define PM1.0 value of the air detector module
  7. int PM2_5Value=0;         //define PM2.5 value of the air detector module
  8. int PM10Value=0;         //define PM10 value of the air detector module


  9. void setup()
  10. {
  11.   Serial.begin(9600);   //使用串口0
  12.   Serial.setTimeout(1500);    //设置超时时间为1500毫秒(大于传感器传送数据周期1秒)
  13.   
  14. // lcd.print("PM1.0: ");
  15. // lcd.print(PM01Value);
  16.   //lcd.println("  ug/m3");            
  17.      
  18.       
  19.       
  20. // lcd.print("PM1 0: ");  
  21.   //lcd.print(PM10Value);
  22.   //lcd.println("  ug/m3");   
  23.   //lcd.println();
  24. }

  25. void loop()
  26. {
  27.   if(Serial.find(0x42)){    //检测到0x42时,开始读取
  28.     Serial.readBytes(buf,LENG);

  29.     if(buf[0] == 0x4d)
  30.     {
  31.       if(checkValue(buf,LENG))
  32.       {
  33.         PM01Value=transmitPM01(buf); //count PM1.0 value of the air detector module
  34.         PM2_5Value=transmitPM2_5(buf);//count PM2.5 value of the air detector module
  35.         PM10Value=transmitPM10(buf); //count PM10 value of the air detector module
  36.       }           
  37.     }
  38.   }

  39.   static unsigned long OledTimer=millis();  
  40.     if (millis() - OledTimer >=1000)
  41.     {
  42.       OledTimer=millis();
  43.       
  44.       Serial.print("PM1.0: ");  
  45.       Serial.print(PM01Value);
  46.       Serial.println("  ug/m3");            
  47.      
  48.       Serial.print("PM2.5: ");  
  49.       Serial.print(PM2_5Value);
  50.       Serial.println("  ug/m3");     
  51.       
  52.       Serial.print("PM1 0: ");  
  53.       Serial.print(PM10Value);
  54.       Serial.println("  ug/m3");   
  55.       Serial.println();
  56.     }
  57.     lcd.begin(16, 2);
  58.     lcd.setCursor(0,0);
  59.     lcd.print("PM2.5:   ");  
  60.     lcd.print(PM2_5Value);
  61.     lcd.println("ug/m3 ");
  62.     lcd.setCursor(0,1);
  63.     lcd.print("PM10:   ");  
  64.     lcd.print(PM10Value);
  65.     lcd.println("ug/m3  ");   
  66.     lcd.println();
  67. }
  68. char checkValue(unsigned char *thebuf, char leng)
  69. {  
  70.   char receiveflag=0;
  71.   int receiveSum=0;

  72.   for(int i=0; i<(leng-2); i++){
  73.   receiveSum=receiveSum+thebuf[i];
  74.   }
  75.   receiveSum=receiveSum + 0x42;
  76.   
  77.   if(receiveSum == ((thebuf[leng-2]<<8)+thebuf[leng-1]))  //check the serial data
  78.   {
  79.     receiveSum = 0;
  80.     receiveflag = 1;
  81.   }
  82.   return receiveflag;
  83. }

  84. int transmitPM01(unsigned char *thebuf)
  85. {
  86.   int PM01Val;
  87.   PM01Val=((thebuf[3]<<8) + thebuf[4]); //count PM1.0 value of the air detector module
  88.   return PM01Val;
  89. }

  90. //transmit PM Value to PC
  91. int transmitPM2_5(unsigned char *thebuf)
  92. {
  93.   int PM2_5Val;
  94.   PM2_5Val=((thebuf[5]<<8) + thebuf[6]);//count PM2.5 value of the air detector module
  95.   return PM2_5Val;
  96.   }

  97. //transmit PM Value to PC
  98. int transmitPM10(unsigned char *thebuf)
  99. {
  100.   int PM10Val;
  101.   PM10Val=((thebuf[7]<<8) + thebuf[8]); //count PM10 value of the air detector module  
  102.   return PM10Val;
  103. }
复制代码


空气质量检测PM2.5.zip

61.12 KB, 下载次数: 13, 下载积分: 黑币 -5

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

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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