新型コロナの流行から人の密をCO2の濃度から判断するシステムが増えています。
そこでSony Spresenseから手軽に使える室内環境センサーボードを作ってみました。
CO2センサー : SGP30-2.5K VOCセンサー「SGP30 / SGPC3」(NRND)
温度湿度センサー : SHTC1 デジタル温湿度センサー 「SHTC1」
共にsensirionが作っているセンサーですがSGP30はメーカー非推奨となっています。
2つのセンサー共にArduino用のライブラリが使えますので以下のライブラリを追加して下さい。
SGP30 https://github.com/sparkfun/SparkFun_SGP30_Arduino_Library
SHTC1 https://github.com/winkj/arduino-sht
ライブラリのサンプルプログラムでセンサーが動作しているのを確認します。
// SPG30 Example1_BasicReadings
/*
Library for the Sensirion SGP30 Indoor Air Quality Sensor
By: Ciara Jekel
SparkFun Electronics
Date: June 28th, 2018
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).
SGP30 Datasheet: https://cdn.sparkfun.com/assets/c/0/a/2/e/Sensirion_Gas_Sensors_SGP30_Datasheet.pdf
Feel like supporting our work? Buy a board from SparkFun!
https://www.sparkfun.com/products/14813
This example reads the sensors calculated CO2 and TVOC values
*/
# include "SparkFun_SGP30_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_SGP30
# include <Wire.h>
SGP30 mySensor; //create an object of the SGP30 class
void setup() {
Serial.begin(9600);
Wire.begin();
//Initialize sensor
if (mySensor.begin() == false) {
Serial.println("No SGP30 Detected. Check connections.");
while (1);
}
//Initializes sensor for air quality readings
//measureAirQuality should be called in one second increments after a call to initAirQuality
mySensor.initAirQuality();
}
void loop() {
//First fifteen readings will be
//CO2: 400 ppm TVOC: 0 ppb
delay(1000); //Wait 1 second
//measure CO2 and TVOC levels
mySensor.measureAirQuality();
Serial.print("CO2: ");
Serial.print(mySensor.CO2);
Serial.print(" ppm\tTVOC: ");
Serial.print(mySensor.TVOC);
Serial.println(" ppb");
}
// SHTC1 Sample code
# include <Wire.h>
# include <shtc1.h>
SHTC1 shtc1;
void setup() {
// put your setup code here, to run once
Wire.begin();
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
shtc1.readSample();
Serial.print("SHTC1:\n");
Serial.print(" RH: ");
Serial.print(shtc1.getHumidity(), 2);
Serial.print("\n");
Serial.print(" T: ");
Serial.print(shtc1.getTemperature(), 2);
Serial.print("\n");
delay(1000);
}
両方のセンサーが動いているのを確認できたら、1つのプログラムにまとめます。
# include "SparkFun_SGP30_Arduino_Library.h" // Click here to get the library: http://librarymanager/All#SparkFun_SGP30
# include <Wire.h>
# include <shtc1.h>
SGP30 mySensor; //create an object of the SGP30 class
SHTC1 shtc1;
void setup() {
Serial.begin(115200);
Wire.begin();
//Initialize sensor
if (mySensor.begin() == false) {
Serial.println("No SGP30 Detected. Check connections.");
while (1);
}
//Initializes sensor for air quality readings
//measureAirQuality should be called in one second increments after a call to initAirQuality
mySensor.initAirQuality();
}
void loop() {
//First fifteen readings will be
//CO2: 400 ppm TVOC: 0 ppb
delay(1000); //Wait 1 second
//measure CO2 and TVOC levels
mySensor.measureAirQuality();
//measure TEMP and HUM levels
shtc1.readSample();
Serial.print("CO2: ");
Serial.print(mySensor.CO2);
Serial.print("ppm tTVOC: ");
Serial.print(mySensor.TVOC);
Serial.print("ppb");
Serial.print(" RH: ");
Serial.print(shtc1.getHumidity(), 2);
Serial.print("% TEMP: ");
Serial.print(shtc1.getTemperature(), 2);
Serial.println("℃");
}
これでSony SpresenseでCO2、TOVC、温度、湿度のデータを取得出来るようになりました。
次回は取得したデータを Spresense LTE を使ってサーバー(クラウド)にアップロードするサンプルを公開します。
追記
Sony Spresense LTE拡張ボードで温湿度、eCO2、TVOCのデータをCloud(Thingspeak)にアップロード