当前位置:   article > 正文

树莓派用python写sgp30传感器的二氧化碳(co2)监测_树莓派加气体传感器

树莓派加气体传感器

sgp30传感器,采用IIC总线与处理器通信。树莓派刚好有IIC引脚。且有现成的python包支持。

有兴趣可以参考链接:

Python sgp30包_程序模块 - PyPI - Python中文网

但是这个包用起来是有问题的,直接pip install sgp30后使用会报错。

所以截止目前网上都是单片机用C语言来写的sgp30传感器检测实例。下面我将一步步的介绍使用python在树莓派上编写一个sgp30传感器监测co2的实例。


环境:

树莓派3B+

python3

1.连接树莓派和sgp30传感器接口

2.打开树莓派I2C使能

树莓派默认打开I2C功能,连接好树莓派和SGP30硬件接线后,检查树莓派是否开启了I2C功能:

sudo i2cdetect -y -a 1

如果开启了会显示:

 表示SGP30传感器I2C地址:0x58

如果I2C没有打开,可以使用命令sudo raspi-config进入树莓派功能配置 。

enable即可。

3.安装python的SGP30模块

pip install sgp30

 4.修正SGP模块中的一些引用

在包SGP的快速使用示例中看到它从smbus2中import SMBusWrapper。

但是smbus2中其实是没有SMBusWrapper的。在sgp30中它也import了SMBusWrapper。因此这个写法就会报错。

解决:import SMBusWrapper改为from smbus2 import SMBus(sgp30中也对应的改)

错误示例:

 5.愉快的上代码:

  1. from smbus2 import SMBus
  2. from sgp30 import Sgp30
  3. import time
  4. import os.path
  5. import matplotlib.pyplot as plt
  6. import datetime
  7. import schedule
  8. def run_recordData():
  9. print(".",end="")
  10. print()
  11. print(sgp.read_measurements())
  12. TimeNow=datetime.datetime.now().strftime('%H:%M')
  13. co2Data.append(sgp.read_measurements()[0][0])
  14. recordTime.append(TimeNow)
  15. def run_show8hourPic():
  16. plt.close()
  17. plt.plot(recordTime,co2Data,linestyle='-', linewidth=1, marker='.', markersize=10, label='CO2')
  18. plt.legend()
  19. plt.xticks(rotation = 45)
  20. plt.show(block=False)
  21. plt.pause(3)
  22. def run_resetData():
  23. co2Data=[]
  24. recordTime=[]
  25. co2Data=[]
  26. recordTime=[]
  27. with SMBus(1) as bus:
  28. sgp=Sgp30(bus,baseline_filename="/tmp/mySGP30_baseline")#这句是sgp示例里面写的,我没仔细去看是用来做什么的,可以删掉
  29. print("resetting all i2c devices")
  30. sgp.i2c_geral_call()
  31. print(sgp.read_features())
  32. print(sgp.read_serial())
  33. sgp.init_sgp()
  34. print(sgp.read_measurements())
  35. print(sgp.read_measurements()[0][0])
  36. print("the SGP30 takes at least 15 seconds to warm up, 12 hours before the readigs become really stable")
  37. schedule.every(10).minutes.do(run_recordData)
  38. schedule.every(1).hours.do(run_show8hourPic)
  39. schedule.every(24).hours.do(run_resetData)
  40. while True:
  41. schedule.run_pending() # run_pending:运行所有可以运行的任务

实现:每10分钟采集一次CO2的值,每小时更新一次展示图。每24小时重值归零数据后展示新一天的数据。


彩蛋: 网上找到的空间环境中二氧化碳对人的影响:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/604046
推荐阅读
相关标签
  

闽ICP备14008679号