├── .vscode ├── arduino.json ├── c_cpp_properties.json └── ipch │ ├── 64f695755a30f0c9 │ ├── ADSR.ipch │ └── mmap_address.bin │ ├── 679b64239d99c71b │ └── mmap_address.bin │ ├── 8d57f142091cea24 │ ├── SynthVoice.ipch │ └── mmap_address.bin │ ├── b53b35abae7be413 │ ├── TransformFactory.ipch │ └── mmap_address.bin │ └── d245055650c5293e │ ├── mmap_address.bin │ └── sound_synth.ipch ├── AD.cpp ├── AD.h ├── ADSR.cpp ├── ADSR.h ├── Config.h ├── DrumVoice.h ├── FileIO.h ├── FixedPointWaveTableOsc.hpp ├── LowPass.h ├── Matrix4.cpp ├── Matrix4.h ├── MultiWaveNumOsc.h ├── Num.h ├── NumWaveTableOsc.hpp ├── Parameters.h ├── Quaternion.cpp ├── Quaternion.h ├── README.md ├── StringMachine.cpp ├── SynthVoice.h ├── TransformFactory.cpp ├── TransformFactory.h ├── Trig.cpp ├── Trig.h ├── Util.cpp ├── Util.h ├── VADrum.cpp ├── VAEngine.cpp ├── Vector3.cpp ├── Vector3.h ├── Waveforms.h ├── esp32soundsynth.ino └── wavetableosc.hpp /.vscode/arduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokontep/esp32soundsynth/HEAD/.vscode/arduino.json -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokontep/esp32soundsynth/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/ipch/64f695755a30f0c9/ADSR.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokontep/esp32soundsynth/HEAD/.vscode/ipch/64f695755a30f0c9/ADSR.ipch -------------------------------------------------------------------------------- /.vscode/ipch/64f695755a30f0c9/mmap_address.bin: -------------------------------------------------------------------------------- 1 |