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