├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── Adafruit_IS31FL3731.cpp ├── Adafruit_IS31FL3731.h ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── examples ├── gfxdemo │ └── gfxdemo.ino ├── manualanim │ └── manualanim.ino └── swirldemo │ └── swirldemo.ino └── library.properties /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Adafruit_IS31FL3731.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/Adafruit_IS31FL3731.cpp -------------------------------------------------------------------------------- /Adafruit_IS31FL3731.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/Adafruit_IS31FL3731.h -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/README.md -------------------------------------------------------------------------------- /examples/gfxdemo/gfxdemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/examples/gfxdemo/gfxdemo.ino -------------------------------------------------------------------------------- /examples/manualanim/manualanim.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/examples/manualanim/manualanim.ino -------------------------------------------------------------------------------- /examples/swirldemo/swirldemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/examples/swirldemo/swirldemo.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_IS31FL3731/HEAD/library.properties --------------------------------------------------------------------------------