├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── compile_examples.sh ├── docs └── speaker 1kHz sawtooth signal.png ├── examples ├── playFromFlash │ ├── playFromFlash.ino │ └── sound.h ├── playWavFromSD │ └── playWavFromSD.ino └── sawtooth │ └── sawtooth.ino ├── library.properties ├── src ├── speaker.cpp └── speaker.h └── tools └── raw2uint16.html /.gitignore: -------------------------------------------------------------------------------- 1 | src/target 2 | *.bin 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/README.md -------------------------------------------------------------------------------- /compile_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/compile_examples.sh -------------------------------------------------------------------------------- /docs/speaker 1kHz sawtooth signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/docs/speaker 1kHz sawtooth signal.png -------------------------------------------------------------------------------- /examples/playFromFlash/playFromFlash.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/examples/playFromFlash/playFromFlash.ino -------------------------------------------------------------------------------- /examples/playFromFlash/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/examples/playFromFlash/sound.h -------------------------------------------------------------------------------- /examples/playWavFromSD/playWavFromSD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/examples/playWavFromSD/playWavFromSD.ino -------------------------------------------------------------------------------- /examples/sawtooth/sawtooth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/examples/sawtooth/sawtooth.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/library.properties -------------------------------------------------------------------------------- /src/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/src/speaker.cpp -------------------------------------------------------------------------------- /src/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/src/speaker.h -------------------------------------------------------------------------------- /tools/raw2uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monkbroc/particle-speaker/HEAD/tools/raw2uint16.html --------------------------------------------------------------------------------