GY-63_MS5611/libraries/SGP30/examples/SGP30_minimal/SGP30_minimal.ino
2021-12-28 11:10:52 +01:00

39 lines
615 B
C++

//
// FILE: SGP30_minimal.ino
// AUTHOR: Rob Tillaart
// PURPOSE: demo SGP30
// URL: https://github.com/RobTillaart/SGP30
// https://www.adafruit.com/product/3709
// minimal sketch, can be used with IDE->tools->plotter
#include "SGP30.h"
SGP30 SGP;
void setup()
{
Serial.begin(115200);
while (!Serial) delay(1);
Serial.print(__FILE__);
SGP.begin();
}
void loop()
{
SGP.measure(false); // returns false if no measurement is made
Serial.print(SGP.getTVOC());
Serial.print("\t");
Serial.print(SGP.getCO2());
Serial.println();
delay(1000);
}
// -- END OF FILE --