├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── Adafruit_ZeroI2S.cpp ├── Adafruit_ZeroI2S.h ├── LICENSE ├── README.md ├── code-of-conduct.md ├── examples ├── basic │ ├── .metro_m4.test.only │ ├── .zero.test.only │ └── basic.ino ├── dma │ ├── .metro_m4.test.only │ ├── .zero.test.only │ └── dma.ino ├── dma_passthrough │ ├── .metro_m4.test.only │ └── dma_passthrough.ino └── tone_generator │ ├── .metro_m4.test.only │ ├── .zero.test.only │ └── tone_generator.ino ├── library.properties └── license.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | -------------------------------------------------------------------------------- /Adafruit_ZeroI2S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/Adafruit_ZeroI2S.cpp -------------------------------------------------------------------------------- /Adafruit_ZeroI2S.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/Adafruit_ZeroI2S.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /examples/basic/.metro_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic/.zero.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic/basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/examples/basic/basic.ino -------------------------------------------------------------------------------- /examples/dma/.metro_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dma/.zero.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dma/dma.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/examples/dma/dma.ino -------------------------------------------------------------------------------- /examples/dma_passthrough/.metro_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dma_passthrough/dma_passthrough.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/examples/dma_passthrough/dma_passthrough.ino -------------------------------------------------------------------------------- /examples/tone_generator/.metro_m4.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tone_generator/.zero.test.only: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/tone_generator/tone_generator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/examples/tone_generator/tone_generator.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_ZeroI2S/HEAD/license.txt --------------------------------------------------------------------------------