├── .gitignore ├── README.md ├── crow_m4l ├── ^^command_center.amxd ├── ^^dual.amxd ├── ^^ins.amxd ├── ^^osc.amxd ├── ^^outs.amxd ├── ^^tport.amxd ├── ^^trigs.amxd ├── i2c │ ├── ^^jf_geode.amxd │ ├── ^^jf_synth.amxd │ ├── ^^jf_vox.amxd │ └── ^^w_synth.amxd ├── scripting │ ├── ^^bridges.amxd │ ├── ^^derwydd.amxd │ └── ^^macros.amxd └── smartphones │ ├── ^^listen.amxd │ └── ^^talk.amxd ├── crowm4lmanual - 230310.pdf └── images └── crowm4l.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | druid.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/README.md -------------------------------------------------------------------------------- /crow_m4l/^^command_center.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^command_center.amxd -------------------------------------------------------------------------------- /crow_m4l/^^dual.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^dual.amxd -------------------------------------------------------------------------------- /crow_m4l/^^ins.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^ins.amxd -------------------------------------------------------------------------------- /crow_m4l/^^osc.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^osc.amxd -------------------------------------------------------------------------------- /crow_m4l/^^outs.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^outs.amxd -------------------------------------------------------------------------------- /crow_m4l/^^tport.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^tport.amxd -------------------------------------------------------------------------------- /crow_m4l/^^trigs.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/^^trigs.amxd -------------------------------------------------------------------------------- /crow_m4l/i2c/^^jf_geode.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/i2c/^^jf_geode.amxd -------------------------------------------------------------------------------- /crow_m4l/i2c/^^jf_synth.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/i2c/^^jf_synth.amxd -------------------------------------------------------------------------------- /crow_m4l/i2c/^^jf_vox.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/i2c/^^jf_vox.amxd -------------------------------------------------------------------------------- /crow_m4l/i2c/^^w_synth.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/i2c/^^w_synth.amxd -------------------------------------------------------------------------------- /crow_m4l/scripting/^^bridges.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/scripting/^^bridges.amxd -------------------------------------------------------------------------------- /crow_m4l/scripting/^^derwydd.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/scripting/^^derwydd.amxd -------------------------------------------------------------------------------- /crow_m4l/scripting/^^macros.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/scripting/^^macros.amxd -------------------------------------------------------------------------------- /crow_m4l/smartphones/^^listen.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/smartphones/^^listen.amxd -------------------------------------------------------------------------------- /crow_m4l/smartphones/^^talk.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crow_m4l/smartphones/^^talk.amxd -------------------------------------------------------------------------------- /crowm4lmanual - 230310.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/crowm4lmanual - 230310.pdf -------------------------------------------------------------------------------- /images/crowm4l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome/crow-m4l/HEAD/images/crowm4l.png --------------------------------------------------------------------------------