├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── Adafruit_VCNL4010.cpp ├── Adafruit_VCNL4010.h ├── README.md ├── code-of-conduct.md ├── examples └── vcnl4010test │ └── vcnl4010test.ino ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | html 3 | Doxyfile* 4 | doxygen_sqlite3.db 5 | -------------------------------------------------------------------------------- /Adafruit_VCNL4010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/Adafruit_VCNL4010.cpp -------------------------------------------------------------------------------- /Adafruit_VCNL4010.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/Adafruit_VCNL4010.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /examples/vcnl4010test/vcnl4010test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/examples/vcnl4010test/vcnl4010test.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_VCNL4010/HEAD/license.txt --------------------------------------------------------------------------------