├── .gitignore ├── CHANGELOG.md ├── LICENSE-GPLv3.txt ├── LICENSE.md ├── Makefile ├── README.md ├── plugin.json ├── res └── E340.svg └── src ├── E340.cpp ├── plugin.cpp └── plugin.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE-GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/LICENSE-GPLv3.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/README.md -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/plugin.json -------------------------------------------------------------------------------- /res/E340.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/res/E340.svg -------------------------------------------------------------------------------- /src/E340.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/src/E340.cpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCVRack/ESeries/HEAD/src/plugin.hpp --------------------------------------------------------------------------------