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