├── README.md ├── examples ├── MIDI_synth │ ├── MIDI_parser.h │ └── MIDI_synth.ino ├── any_hertz │ └── any_hertz.ino ├── different_pins_and_modes │ └── different_pins_and_modes.ino ├── modulation │ └── modulation.ino ├── setting_voices │ └── setting_voices.ino ├── song │ ├── notes.h │ ├── song.h │ └── song.ino └── suspend_resume │ └── suspend_resume.ino ├── library.properties └── src ├── synth.h └── tables.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/README.md -------------------------------------------------------------------------------- /examples/MIDI_synth/MIDI_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/MIDI_synth/MIDI_parser.h -------------------------------------------------------------------------------- /examples/MIDI_synth/MIDI_synth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/MIDI_synth/MIDI_synth.ino -------------------------------------------------------------------------------- /examples/any_hertz/any_hertz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/any_hertz/any_hertz.ino -------------------------------------------------------------------------------- /examples/different_pins_and_modes/different_pins_and_modes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/different_pins_and_modes/different_pins_and_modes.ino -------------------------------------------------------------------------------- /examples/modulation/modulation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/modulation/modulation.ino -------------------------------------------------------------------------------- /examples/setting_voices/setting_voices.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/setting_voices/setting_voices.ino -------------------------------------------------------------------------------- /examples/song/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/song/notes.h -------------------------------------------------------------------------------- /examples/song/song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/song/song.h -------------------------------------------------------------------------------- /examples/song/song.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/song/song.ino -------------------------------------------------------------------------------- /examples/suspend_resume/suspend_resume.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/examples/suspend_resume/suspend_resume.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/library.properties -------------------------------------------------------------------------------- /src/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/src/synth.h -------------------------------------------------------------------------------- /src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/the_synth/HEAD/src/tables.h --------------------------------------------------------------------------------