├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── Adafruit_SGP30.cpp ├── Adafruit_SGP30.h ├── README.md ├── assets └── board.jpg ├── code-of-conduct.md ├── examples └── sgp30test │ └── sgp30test.ino ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/.gitignore -------------------------------------------------------------------------------- /Adafruit_SGP30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/Adafruit_SGP30.cpp -------------------------------------------------------------------------------- /Adafruit_SGP30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/Adafruit_SGP30.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/README.md -------------------------------------------------------------------------------- /assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/assets/board.jpg -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /examples/sgp30test/sgp30test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/examples/sgp30test/sgp30test.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_SGP30/HEAD/license.txt --------------------------------------------------------------------------------