Comments: CCS811 Air Quality Breakout Hookup Guide

≡ Pages

Looking for answers to technical questions?

We welcome your comments and suggestions below. However, if you are looking for solutions to technical questions please see our Technical Assistance page.

  • Member #1230885 / about 6 years ago / 2

    Warning: Use the 1.0.0 version of the CCS811 library if you are using an Arduino Uno. Version 1.0.1 does not function properly Also, it makes a high pitch noise whenever it runs. Its kind of annoying.

  • Member #1414173 / about 7 years ago / 1

    I tried CCS811 library with Arduino Uno and Mega and it works fine, but I tried it with ESP8266 Thing but it does not work. Any reason why it should not work?

  • Hi - Just a small typo I noticed in the first loop() example code

    void loop()
    {
      if (myCCS811.dataAvailable())
      {
        myCCS811.readAlgorithmResults();
        int tempCO2 = myCCS811.getCO2();
        int tempVOC = myCCS811.getTVOC(); // <---- TYPO corrected here getTVOC() instead of gettVOC()
      }
      else if (myCCS811.checkForStatusError())
      {
        while(1);
      }
    
      delay(1000); //Wait for next reading
    }
    


If you've found an issue with this tutorial content, please send us your feedback!