├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── doc ├── LabPart1.md ├── LabPart2.md ├── PCAL6408A.png ├── StackSynth-v1.pdf ├── StackSynth-v2.pdf ├── doubleBuffer.md ├── handshaking.md ├── hello-world.jpg ├── key-detect.jpg ├── key-matrix.png ├── keyboard.png ├── quad.png ├── quad.svg ├── rx-flow.png ├── sample-wave.png ├── synth-stack.png ├── synth.png ├── tx-flow.png └── v2knobs.md ├── include └── README ├── lib ├── ES_CAN │ ├── ES_CAN.cpp │ └── ES_CAN.h └── README ├── platformio.ini ├── src ├── config.cpp └── main.cpp └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/README.md -------------------------------------------------------------------------------- /doc/LabPart1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/LabPart1.md -------------------------------------------------------------------------------- /doc/LabPart2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/LabPart2.md -------------------------------------------------------------------------------- /doc/PCAL6408A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/PCAL6408A.png -------------------------------------------------------------------------------- /doc/StackSynth-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/StackSynth-v1.pdf -------------------------------------------------------------------------------- /doc/StackSynth-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/StackSynth-v2.pdf -------------------------------------------------------------------------------- /doc/doubleBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/doubleBuffer.md -------------------------------------------------------------------------------- /doc/handshaking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/handshaking.md -------------------------------------------------------------------------------- /doc/hello-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/hello-world.jpg -------------------------------------------------------------------------------- /doc/key-detect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/key-detect.jpg -------------------------------------------------------------------------------- /doc/key-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/key-matrix.png -------------------------------------------------------------------------------- /doc/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/keyboard.png -------------------------------------------------------------------------------- /doc/quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/quad.png -------------------------------------------------------------------------------- /doc/quad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/quad.svg -------------------------------------------------------------------------------- /doc/rx-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/rx-flow.png -------------------------------------------------------------------------------- /doc/sample-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/sample-wave.png -------------------------------------------------------------------------------- /doc/synth-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/synth-stack.png -------------------------------------------------------------------------------- /doc/synth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/synth.png -------------------------------------------------------------------------------- /doc/tx-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/tx-flow.png -------------------------------------------------------------------------------- /doc/v2knobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/doc/v2knobs.md -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/include/README -------------------------------------------------------------------------------- /lib/ES_CAN/ES_CAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/lib/ES_CAN/ES_CAN.cpp -------------------------------------------------------------------------------- /lib/ES_CAN/ES_CAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/lib/ES_CAN/ES_CAN.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edstott/ES-synth-starter/HEAD/test/README --------------------------------------------------------------------------------