# # Library for Grove - PM2.5 PM10 detect sensor (HM3301) # ''' ## License The MIT License (MIT) Copyright (C) 2018 Seeed Technology Co.,Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ''' from smbus2 import SMBus , i2c_msg from smbus2 import SMBusWrapper import time HM3301_DEFAULT_I2C_ADDR = 0x40 SELECT_I2C_ADDR = 0x88 DATA_CNT = 29 class Seeed_HM3301(object): def __init__(self,bus_nr = 1): self.PM_1_0_conctrt_std = 0 # PM1.0 Standard particulate matter concentration Unit:ug/m3 self.PM_2_5_conctrt_std = 0 # PM2.5 Standard particulate matter concentration Unit:ug/m3 self.PM_10_conctrt_std = 0 # PM10 Standard particulate matter concentration Unit:ug/m3 self.PM_1_0_conctrt_atmosph = 0 #PM1.0 Atmospheric environment concentration ,unit:ug/m3 self.PM_2_5_conctrt_atmosph = 0 #PM2.5 Atmospheric environment concentration ,unit:ug/m3 self.PM_10_conctrt_atmosph = 0 #PM10 Atmospheric environment concentration ,unit:ug/m3 with SMBusWrapper(bus_nr) as bus: write = i2c_msg.write(HM3301_DEFAULT_I2C_ADDR,[SELECT_I2C_ADDR]) bus.i2c_rdwr(write) def read_data(self): with SMBusWrapper(1) as bus: read = i2c_msg.read(HM3301_DEFAULT_I2C_ADDR,DATA_CNT) bus.i2c_rdwr(read) return list(read) def check_crc(self,data): sum = 0 for i in range(DATA_CNT-1): sum += data[i] sum = sum & 0xff #print(sum) #print(data[28]) return (sum==data[28]) def parse_data(self,data): self.PM_1_0_conctrt_std = data[4]<<8 | data[5] self.PM_2_5_conctrt_std = data[6]<<8 | data[7] self.PM_10_conctrt_std = data[8]<<8 | data[9] self.PM_1_0_conctrt_atmosph = data[10]<<8 | data[11] self.PM_2_5_conctrt_atmosph = data[12]<<8 | data[13] self.PM_10_conctrt_atmosph = data[14]<<8 | data[15] print("PM1.0 Standard particulate matter concentration Unit:ug/m3 = %d" %self.PM_1_0_conctrt_std) print("PM2.5 Standard particulate matter concentration Unit:ug/m3 = %d" %self.PM_2_5_conctrt_std) print("PM10 Standard particulate matter concentration Unit:ug/m3 = %d" %self.PM_10_conctrt_std) print("PM1.0 Atmospheric environment concentration ,unit:ug/m3 = %d" %self.PM_1_0_conctrt_atmosph) print("PM2.5 Atmospheric environment concentration ,unit:ug/m3 = %d" %self.PM_2_5_conctrt_atmosph) print("PM10 Atmospheric environment concentration ,unit:ug/m3 = %d" %self.PM_10_conctrt_atmosph) print(" ") print(" ") print(" ") ''' with SMBusWrapper(1) as bus: write=i2c_msg.write(0x40,[0x88]) bus.i2c_rdwr(write) while(1): read = i2c_msg.read(0x40,29) bus.i2c_rdwr(read) data = list(read) print type(data) print data time.sleep(1) ''' def main(): print("################### NOTICE!!!! ############################") print("####### Please set the I2c speed to 20khz ####") print("####### sudo vim /boot/config.txt ####") print("####### add content : dtparam=i2c_arm_baudrate=20000 ####") print("####### sudo reboot ####") print("################### NOTICE!!!! ############################") print(" ") print(" ") print(" ") hm3301 = Seeed_HM3301() time.sleep(.1) while 1: data = hm3301.read_data() #print data if(hm3301.check_crc(data) != True): print("CRC error!") hm3301.parse_data(data) time.sleep(3) if __name__ == '__main__': main()