1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Sony Spresense用のCO2、温度湿度センサーボードを作ってみた

Last updated at Posted at 2020-12-20

新型コロナの流行から人の密をCO2の濃度から判断するシステムが増えています。
そこでSony Spresenseから手軽に使える室内環境センサーボードを作ってみました。

CO2センサー : SGP30-2.5K VOCセンサー「SGP30 / SGPC3」(NRND)
温度湿度センサー : SHTC1 デジタル温湿度センサー 「SHTC1」
共にsensirionが作っているセンサーですがSGP30はメーカー非推奨となっています。

写真
CO2_TEMP_Board.fw.png
回路図
Spresense_SGP30_SHTC1-1.jpg

2つのセンサー共にArduino用のライブラリが使えますので以下のライブラリを追加して下さい。
SGP30 https://github.com/sparkfun/SparkFun_SGP30_Arduino_Library
SHTC1 https://github.com/winkj/arduino-sht

ライブラリのサンプルプログラムでセンサーが動作しているのを確認します。

Example1_BasicReadings.ino
// 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.ino
// 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つのプログラムにまとめます。

Spresense_SGP30_SHTC1.ino
# 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("℃");
}

SGP30.JPG

これでSony SpresenseでCO2、TOVC、温度、湿度のデータを取得出来るようになりました。
次回は取得したデータを Spresense LTE を使ってサーバー(クラウド)にアップロードするサンプルを公開します。

追記
Sony Spresense LTE拡張ボードで温湿度、eCO2、TVOCのデータをCloud(Thingspeak)にアップロード

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?