measureTest method

void measureTest()

Performs an internal test. DO NOT call this method after SGP30.iaqInit because this test resets the sensor initialization!

To use this method create SGP30 with the optional parameter init = false

Implementation

void measureTest() {
  var data = _command(
      cmdMeasureTest, cmdMeasureTestWords, cmdMeasureTestTestDelayMs);
  print(data[0] == cmdMeasureTestOk);
}