├── .gitattributes ├── .gitignore ├── README.md ├── clock ├── README.md └── txo boolean bouillon.txt ├── compositions └── README.md ├── documentation ├── README.md ├── TT_keys_card_1.3.pdf ├── TT_scene_RECALL_sheet.pdf ├── monome-tele-commands.pdf └── ttStudies.pdf ├── factory defaults ├── README.md ├── tt00.txt ├── tt01.txt ├── tt02.txt ├── tt03.txt ├── tt04.txt ├── tt05.txt ├── tt06.txt └── tt07.txt ├── grid ├── README.md └── jroo-tricephale.txt ├── modulation └── README.md ├── sequencers ├── BrotherJohn.bsh ├── BrotherJohn.v1.txt ├── README.md ├── RowRowRowYourBoat ├── TetraSequencer-CV-Recorder.txt ├── TetraSequencer.txt ├── ThreeBlindMice.txt ├── orca.txt ├── turing machine.txt └── txi markov.txt ├── studies └── README.md └── utils └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/README.md -------------------------------------------------------------------------------- /clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/clock/README.md -------------------------------------------------------------------------------- /clock/txo boolean bouillon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/clock/txo boolean bouillon.txt -------------------------------------------------------------------------------- /compositions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/compositions/README.md -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/TT_keys_card_1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/documentation/TT_keys_card_1.3.pdf -------------------------------------------------------------------------------- /documentation/TT_scene_RECALL_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/documentation/TT_scene_RECALL_sheet.pdf -------------------------------------------------------------------------------- /documentation/monome-tele-commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/documentation/monome-tele-commands.pdf -------------------------------------------------------------------------------- /documentation/ttStudies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/documentation/ttStudies.pdf -------------------------------------------------------------------------------- /factory defaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/README.md -------------------------------------------------------------------------------- /factory defaults/tt00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt00.txt -------------------------------------------------------------------------------- /factory defaults/tt01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt01.txt -------------------------------------------------------------------------------- /factory defaults/tt02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt02.txt -------------------------------------------------------------------------------- /factory defaults/tt03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt03.txt -------------------------------------------------------------------------------- /factory defaults/tt04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt04.txt -------------------------------------------------------------------------------- /factory defaults/tt05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt05.txt -------------------------------------------------------------------------------- /factory defaults/tt06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt06.txt -------------------------------------------------------------------------------- /factory defaults/tt07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/factory defaults/tt07.txt -------------------------------------------------------------------------------- /grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/grid/README.md -------------------------------------------------------------------------------- /grid/jroo-tricephale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/grid/jroo-tricephale.txt -------------------------------------------------------------------------------- /modulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/modulation/README.md -------------------------------------------------------------------------------- /sequencers/BrotherJohn.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/BrotherJohn.bsh -------------------------------------------------------------------------------- /sequencers/BrotherJohn.v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/BrotherJohn.v1.txt -------------------------------------------------------------------------------- /sequencers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/README.md -------------------------------------------------------------------------------- /sequencers/RowRowRowYourBoat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/RowRowRowYourBoat -------------------------------------------------------------------------------- /sequencers/TetraSequencer-CV-Recorder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/TetraSequencer-CV-Recorder.txt -------------------------------------------------------------------------------- /sequencers/TetraSequencer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/TetraSequencer.txt -------------------------------------------------------------------------------- /sequencers/ThreeBlindMice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/ThreeBlindMice.txt -------------------------------------------------------------------------------- /sequencers/orca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/orca.txt -------------------------------------------------------------------------------- /sequencers/turing machine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/turing machine.txt -------------------------------------------------------------------------------- /sequencers/txi markov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/sequencers/txi markov.txt -------------------------------------------------------------------------------- /studies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/studies/README.md -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monome-community/teletype-codex/HEAD/utils/README.md --------------------------------------------------------------------------------