├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── Adafruit_LC709203F.cpp ├── Adafruit_LC709203F.h ├── code-of-conduct.md ├── examples └── LC709203F_demo │ └── LC709203F_demo.ino ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | Doxyfile 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /Adafruit_LC709203F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/Adafruit_LC709203F.cpp -------------------------------------------------------------------------------- /Adafruit_LC709203F.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/Adafruit_LC709203F.h -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /examples/LC709203F_demo/LC709203F_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/examples/LC709203F_demo/LC709203F_demo.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_LC709203F/HEAD/license.txt --------------------------------------------------------------------------------