├── .gitmodules ├── Patches ├── Grid Apps │ ├── LICENSE.txt │ ├── Makefile │ ├── Makefile.pdlibbuilder │ ├── README.txt │ ├── grid-help.pd │ ├── grid.c │ ├── grid.o │ ├── grid.pd_linux │ ├── kria-help.pd │ ├── kria.c │ ├── kria.h │ ├── kria.o │ ├── kria.pd_linux │ ├── main.pd │ ├── meadowphysics-help.pd │ ├── meadowphysics.c │ ├── meadowphysics.h │ ├── meadowphysics.o │ ├── meadowphysics.pd_linux │ ├── net_monome.c │ ├── net_monome.h │ ├── net_monome.o │ ├── step-help.pd │ ├── step.c │ ├── step.h │ ├── step.o │ ├── step.pd_linux │ ├── types.h │ ├── whitewhale-help.pd │ ├── whitewhale.c │ ├── whitewhale.h │ ├── whitewhale.o │ └── whitewhale.pd_linux ├── Grid Basic Poly │ ├── blsaw.pd │ ├── grid-example.pd │ ├── grid-help.pd │ ├── grid.c │ ├── grid.o │ ├── grid.pd_linux │ ├── main.pd │ ├── s_blsquare.pd │ ├── s_buzz.pd │ ├── smoothswitch.pd │ ├── u_splicetrans.pd │ └── voice.pd └── SerialOSC-Installer │ ├── grid-example.pd │ ├── grid-help.pd │ ├── grid.c │ ├── grid.o │ ├── grid.pd_linux │ ├── install.sh │ ├── killserialosc.sh │ ├── lib │ ├── libmonome.so │ ├── libmonome.so.1 │ ├── libmonome.so.1.4.0 │ └── monome │ │ ├── protocol_40h.so │ │ ├── protocol_mext.so │ │ ├── protocol_osc.so │ │ └── protocol_series.so │ ├── main.pd │ ├── monomeserial │ ├── monometest.pd │ ├── serialosc-detector │ ├── serialosc-device │ ├── serialosc.pd │ ├── serialosc.service │ ├── serialoscd │ └── uninstall.sh └── README.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/.gitmodules -------------------------------------------------------------------------------- /Patches/Grid Apps/LICENSE.txt: -------------------------------------------------------------------------------- 1 | use this software for making music or noises! 2 | -------------------------------------------------------------------------------- /Patches/Grid Apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/Makefile -------------------------------------------------------------------------------- /Patches/Grid Apps/Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /Patches/Grid Apps/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/README.txt -------------------------------------------------------------------------------- /Patches/Grid Apps/grid-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/grid-help.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/grid.c -------------------------------------------------------------------------------- /Patches/Grid Apps/grid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/grid.o -------------------------------------------------------------------------------- /Patches/Grid Apps/grid.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/grid.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Apps/kria-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/kria-help.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/kria.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/kria.c -------------------------------------------------------------------------------- /Patches/Grid Apps/kria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/kria.h -------------------------------------------------------------------------------- /Patches/Grid Apps/kria.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/kria.o -------------------------------------------------------------------------------- /Patches/Grid Apps/kria.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/kria.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Apps/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/main.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/meadowphysics-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/meadowphysics-help.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/meadowphysics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/meadowphysics.c -------------------------------------------------------------------------------- /Patches/Grid Apps/meadowphysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/meadowphysics.h -------------------------------------------------------------------------------- /Patches/Grid Apps/meadowphysics.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/meadowphysics.o -------------------------------------------------------------------------------- /Patches/Grid Apps/meadowphysics.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/meadowphysics.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Apps/net_monome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/net_monome.c -------------------------------------------------------------------------------- /Patches/Grid Apps/net_monome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/net_monome.h -------------------------------------------------------------------------------- /Patches/Grid Apps/net_monome.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/net_monome.o -------------------------------------------------------------------------------- /Patches/Grid Apps/step-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/step-help.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/step.c -------------------------------------------------------------------------------- /Patches/Grid Apps/step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/step.h -------------------------------------------------------------------------------- /Patches/Grid Apps/step.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/step.o -------------------------------------------------------------------------------- /Patches/Grid Apps/step.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/step.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Apps/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/types.h -------------------------------------------------------------------------------- /Patches/Grid Apps/whitewhale-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/whitewhale-help.pd -------------------------------------------------------------------------------- /Patches/Grid Apps/whitewhale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/whitewhale.c -------------------------------------------------------------------------------- /Patches/Grid Apps/whitewhale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/whitewhale.h -------------------------------------------------------------------------------- /Patches/Grid Apps/whitewhale.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/whitewhale.o -------------------------------------------------------------------------------- /Patches/Grid Apps/whitewhale.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Apps/whitewhale.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/blsaw.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/blsaw.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/grid-example.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/grid-example.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/grid-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/grid-help.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/grid.c -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/grid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/grid.o -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/grid.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/grid.pd_linux -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/main.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/s_blsquare.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/s_blsquare.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/s_buzz.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/s_buzz.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/smoothswitch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/smoothswitch.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/u_splicetrans.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/u_splicetrans.pd -------------------------------------------------------------------------------- /Patches/Grid Basic Poly/voice.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/Grid Basic Poly/voice.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/grid-example.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/grid-example.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/grid-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/grid-help.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/grid.c -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/grid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/grid.o -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/grid.pd_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/grid.pd_linux -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/install.sh -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/killserialosc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/killserialosc.sh -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/libmonome.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/libmonome.so -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/libmonome.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/libmonome.so.1 -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/libmonome.so.1.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/libmonome.so.1.4.0 -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/monome/protocol_40h.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/monome/protocol_40h.so -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/monome/protocol_mext.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/monome/protocol_mext.so -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/monome/protocol_osc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/monome/protocol_osc.so -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/lib/monome/protocol_series.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/lib/monome/protocol_series.so -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/main.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/monomeserial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/monomeserial -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/monometest.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/monometest.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/serialosc-detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/serialosc-detector -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/serialosc-device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/serialosc-device -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/serialosc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/serialosc.pd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/serialosc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/serialosc.service -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/serialoscd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/serialoscd -------------------------------------------------------------------------------- /Patches/SerialOSC-Installer/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/Patches/SerialOSC-Installer/uninstall.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quilime/organelle-monome/HEAD/README.md --------------------------------------------------------------------------------