├── .DS_Store ├── .gitignore ├── ChromaKind ├── ChromaKind.maxproj ├── README.md ├── media │ └── colorLUT 2 blur.png └── patchers │ ├── Overhead Fractals and Feedback.maxpat │ └── basic force image.maxpat ├── Contacts To MPE ├── Contacts To MPE.maxproj └── patchers │ ├── SenselPolyNote.maxpat │ ├── _Sensel Contacts To MPE.maxpat │ └── mpesynth.maxpat ├── Drawing Contacts ├── Drawing Contacts.maxproj └── patchers │ ├── SenselContactDraw.maxpat │ ├── _Sensel Basic Contact Drawing.maxpat │ └── make_dict_elem.maxpat ├── Gestures └── Gesture and Shape Finder │ ├── Shape Finder.maxproj │ ├── code │ ├── cc_circle.js │ ├── dollar.js │ ├── exm.js │ ├── notezones.js │ ├── shape.js │ └── test.js │ └── patchers │ ├── Shape finder.maxpat │ └── printbug.maxpat ├── LICENSE ├── Live Stream v1 ├── Live Stream v1.maxproj ├── data │ ├── MPE_BEAP_presets.json │ └── beapset.json └── patchers │ ├── MPE in BEAP.maxpat │ ├── bp.RISE Keyboard mod Sensel.maxpat │ └── scaling pressure.maxpat ├── Live Stream v2 ├── FingerBuffers │ ├── FingerBuffers.maxproj │ └── patchers │ │ ├── COMING SOON.maxpat │ │ ├── abuffer.maxpat │ │ └── finger poly.maxpat ├── RadialSpeedScratch.maxpat ├── Song Explorer │ ├── Song Explorer.maxproj │ ├── data │ │ ├── ++flipper.maxsnap │ │ └── mixer.json │ ├── media │ │ ├── Nyboer Test │ │ │ ├── Nyb-00 KickSnareHat.wav │ │ │ ├── Nyb-01 Vocal.wav │ │ │ ├── Nyb-02 ElecPerc.wav │ │ │ ├── Nyb-03 Bass.wav │ │ │ ├── Nyb-04 FM-String.wav │ │ │ ├── Nyb-05 RhythGuitar.wav │ │ │ ├── Nyb-06 Conga.wav │ │ │ ├── Nyb-07 Piano.wav │ │ │ └── Nyb-08 LeadGuitar.wav │ │ ├── Song Explorer Overlay Interface.ai │ │ ├── Song Explorer Overlay Interface.pdf │ │ └── Song_Explorer_Overlay.png │ ├── other │ │ └── Big MPE Pad.senselmap │ └── patchers │ │ ├── Lx.maxpat │ │ ├── hand mixer.maxpat │ │ └── make_touch_list.maxpat └── Spatial.maxpat ├── Morph Puppet ├── Morph Puppet.maxproj ├── media │ ├── Diff.png │ ├── Obotto.ply │ ├── bg00.png │ ├── overlay-seymour.png │ ├── test.jitmtl │ ├── test.jitmtl.diffuse.png │ └── test.jitmtl.thumbnail.png ├── other │ ├── MP Overlay Puppet Map.senselmap │ ├── bot_puppet.senselmap │ └── overlay design.ai └── patchers │ ├── Seymour.maxpat │ ├── adjust bones on robot robr.maxpat │ ├── default_rot.maxpat │ └── midi_limb.maxpat ├── Multitouch from MPE ├── Multitouch from MPE.maxproj ├── other │ └── MPE to MultiPress.senselmap └── patchers │ ├── Multi touch with MIDI.maxpat │ ├── distanceToCentroid.maxpat │ ├── listmult.maxpat │ ├── make_touch_list.maxpat │ └── mpesynth.maxpat ├── README.md └── Spectral Digits ├── README.md ├── Spectral Digits.maxproj ├── data └── senselDict_default.json ├── media ├── buchla.aif ├── img │ ├── example_spectra.png │ ├── fft-drums.png │ ├── fft-femaleopera.png │ ├── fft-plucked_reverbed_guitar.png │ ├── fft-solo_trumpet.png │ ├── handsOn sm.jpg │ ├── handsOn.jpg │ ├── handsOnMorph.png │ ├── scaled_touches.png │ ├── spectum_overlay.png │ ├── synthlabel.png │ ├── touchlabel.png │ ├── ui_fade_l.png │ ├── ui_fade_r.png │ ├── ui_screen.png │ └── ui_screen_sm.png ├── piano.aif └── this is a test.aif ├── other └── graphics.ai └── patchers ├── MaskFromContacts.maxpat ├── Spectral Shiatsu.amxd ├── ded ├── Spectral Massage.amxd ├── Spectral Massage_contacts.amxd ├── blankinstrument.amxd ├── contact_manager.maxpat ├── paramtest.amxd └── poly_fingerspectrum.maxpat ├── dev ├── basic_sample_load.maxpat ├── contacts_only.maxpat ├── gradient gl.maxpat ├── pvoc_sampler.maxpat ├── repos shader.maxpat ├── repos shader2.maxpat └── spectrum try.maxpat ├── jit.play_fft~.maxpat ├── jit.record_fft~.maxpat ├── mdrawAutom.maxpat ├── mdrawContact.maxpat └── poly_fingerspectrum2.maxpat /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /ChromaKind/ChromaKind.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/ChromaKind/ChromaKind.maxproj -------------------------------------------------------------------------------- /ChromaKind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/ChromaKind/README.md -------------------------------------------------------------------------------- /ChromaKind/media/colorLUT 2 blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/ChromaKind/media/colorLUT 2 blur.png -------------------------------------------------------------------------------- /ChromaKind/patchers/Overhead Fractals and Feedback.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/ChromaKind/patchers/Overhead Fractals and Feedback.maxpat -------------------------------------------------------------------------------- /ChromaKind/patchers/basic force image.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/ChromaKind/patchers/basic force image.maxpat -------------------------------------------------------------------------------- /Contacts To MPE/Contacts To MPE.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Contacts To MPE/Contacts To MPE.maxproj -------------------------------------------------------------------------------- /Contacts To MPE/patchers/SenselPolyNote.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Contacts To MPE/patchers/SenselPolyNote.maxpat -------------------------------------------------------------------------------- /Contacts To MPE/patchers/_Sensel Contacts To MPE.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Contacts To MPE/patchers/_Sensel Contacts To MPE.maxpat -------------------------------------------------------------------------------- /Contacts To MPE/patchers/mpesynth.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Contacts To MPE/patchers/mpesynth.maxpat -------------------------------------------------------------------------------- /Drawing Contacts/Drawing Contacts.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Drawing Contacts/Drawing Contacts.maxproj -------------------------------------------------------------------------------- /Drawing Contacts/patchers/SenselContactDraw.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Drawing Contacts/patchers/SenselContactDraw.maxpat -------------------------------------------------------------------------------- /Drawing Contacts/patchers/_Sensel Basic Contact Drawing.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Drawing Contacts/patchers/_Sensel Basic Contact Drawing.maxpat -------------------------------------------------------------------------------- /Drawing Contacts/patchers/make_dict_elem.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Drawing Contacts/patchers/make_dict_elem.maxpat -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/Shape Finder.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/Shape Finder.maxproj -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/cc_circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/cc_circle.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/dollar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/dollar.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/exm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/exm.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/notezones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/notezones.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/shape.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/code/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/code/test.js -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/patchers/Shape finder.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/patchers/Shape finder.maxpat -------------------------------------------------------------------------------- /Gestures/Gesture and Shape Finder/patchers/printbug.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Gestures/Gesture and Shape Finder/patchers/printbug.maxpat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Live Stream v1/Live Stream v1.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/Live Stream v1.maxproj -------------------------------------------------------------------------------- /Live Stream v1/data/MPE_BEAP_presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/data/MPE_BEAP_presets.json -------------------------------------------------------------------------------- /Live Stream v1/data/beapset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/data/beapset.json -------------------------------------------------------------------------------- /Live Stream v1/patchers/MPE in BEAP.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/patchers/MPE in BEAP.maxpat -------------------------------------------------------------------------------- /Live Stream v1/patchers/bp.RISE Keyboard mod Sensel.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/patchers/bp.RISE Keyboard mod Sensel.maxpat -------------------------------------------------------------------------------- /Live Stream v1/patchers/scaling pressure.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v1/patchers/scaling pressure.maxpat -------------------------------------------------------------------------------- /Live Stream v2/FingerBuffers/FingerBuffers.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/FingerBuffers/FingerBuffers.maxproj -------------------------------------------------------------------------------- /Live Stream v2/FingerBuffers/patchers/COMING SOON.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/FingerBuffers/patchers/COMING SOON.maxpat -------------------------------------------------------------------------------- /Live Stream v2/FingerBuffers/patchers/abuffer.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/FingerBuffers/patchers/abuffer.maxpat -------------------------------------------------------------------------------- /Live Stream v2/FingerBuffers/patchers/finger poly.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/FingerBuffers/patchers/finger poly.maxpat -------------------------------------------------------------------------------- /Live Stream v2/RadialSpeedScratch.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/RadialSpeedScratch.maxpat -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/Song Explorer.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/Song Explorer.maxproj -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/data/++flipper.maxsnap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/data/++flipper.maxsnap -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/data/mixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/data/mixer.json -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-00 KickSnareHat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-00 KickSnareHat.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-01 Vocal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-01 Vocal.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-02 ElecPerc.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-02 ElecPerc.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-03 Bass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-03 Bass.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-04 FM-String.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-04 FM-String.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-05 RhythGuitar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-05 RhythGuitar.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-06 Conga.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-06 Conga.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-07 Piano.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-07 Piano.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-08 LeadGuitar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Nyboer Test/Nyb-08 LeadGuitar.wav -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Song Explorer Overlay Interface.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Song Explorer Overlay Interface.ai -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Song Explorer Overlay Interface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Song Explorer Overlay Interface.pdf -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/media/Song_Explorer_Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/media/Song_Explorer_Overlay.png -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/other/Big MPE Pad.senselmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/other/Big MPE Pad.senselmap -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/patchers/Lx.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/patchers/Lx.maxpat -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/patchers/hand mixer.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/patchers/hand mixer.maxpat -------------------------------------------------------------------------------- /Live Stream v2/Song Explorer/patchers/make_touch_list.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Song Explorer/patchers/make_touch_list.maxpat -------------------------------------------------------------------------------- /Live Stream v2/Spatial.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Live Stream v2/Spatial.maxpat -------------------------------------------------------------------------------- /Morph Puppet/Morph Puppet.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/Morph Puppet.maxproj -------------------------------------------------------------------------------- /Morph Puppet/media/Diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/Diff.png -------------------------------------------------------------------------------- /Morph Puppet/media/Obotto.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/Obotto.ply -------------------------------------------------------------------------------- /Morph Puppet/media/bg00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/bg00.png -------------------------------------------------------------------------------- /Morph Puppet/media/overlay-seymour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/overlay-seymour.png -------------------------------------------------------------------------------- /Morph Puppet/media/test.jitmtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/test.jitmtl -------------------------------------------------------------------------------- /Morph Puppet/media/test.jitmtl.diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/test.jitmtl.diffuse.png -------------------------------------------------------------------------------- /Morph Puppet/media/test.jitmtl.thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/media/test.jitmtl.thumbnail.png -------------------------------------------------------------------------------- /Morph Puppet/other/MP Overlay Puppet Map.senselmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/other/MP Overlay Puppet Map.senselmap -------------------------------------------------------------------------------- /Morph Puppet/other/bot_puppet.senselmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/other/bot_puppet.senselmap -------------------------------------------------------------------------------- /Morph Puppet/other/overlay design.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/other/overlay design.ai -------------------------------------------------------------------------------- /Morph Puppet/patchers/Seymour.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/patchers/Seymour.maxpat -------------------------------------------------------------------------------- /Morph Puppet/patchers/adjust bones on robot robr.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/patchers/adjust bones on robot robr.maxpat -------------------------------------------------------------------------------- /Morph Puppet/patchers/default_rot.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/patchers/default_rot.maxpat -------------------------------------------------------------------------------- /Morph Puppet/patchers/midi_limb.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Morph Puppet/patchers/midi_limb.maxpat -------------------------------------------------------------------------------- /Multitouch from MPE/Multitouch from MPE.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/Multitouch from MPE.maxproj -------------------------------------------------------------------------------- /Multitouch from MPE/other/MPE to MultiPress.senselmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/other/MPE to MultiPress.senselmap -------------------------------------------------------------------------------- /Multitouch from MPE/patchers/Multi touch with MIDI.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/patchers/Multi touch with MIDI.maxpat -------------------------------------------------------------------------------- /Multitouch from MPE/patchers/distanceToCentroid.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/patchers/distanceToCentroid.maxpat -------------------------------------------------------------------------------- /Multitouch from MPE/patchers/listmult.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/patchers/listmult.maxpat -------------------------------------------------------------------------------- /Multitouch from MPE/patchers/make_touch_list.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/patchers/make_touch_list.maxpat -------------------------------------------------------------------------------- /Multitouch from MPE/patchers/mpesynth.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Multitouch from MPE/patchers/mpesynth.maxpat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/README.md -------------------------------------------------------------------------------- /Spectral Digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/README.md -------------------------------------------------------------------------------- /Spectral Digits/Spectral Digits.maxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/Spectral Digits.maxproj -------------------------------------------------------------------------------- /Spectral Digits/data/senselDict_default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/data/senselDict_default.json -------------------------------------------------------------------------------- /Spectral Digits/media/buchla.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/buchla.aif -------------------------------------------------------------------------------- /Spectral Digits/media/img/example_spectra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/example_spectra.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/fft-drums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/fft-drums.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/fft-femaleopera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/fft-femaleopera.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/fft-plucked_reverbed_guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/fft-plucked_reverbed_guitar.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/fft-solo_trumpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/fft-solo_trumpet.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/handsOn sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/handsOn sm.jpg -------------------------------------------------------------------------------- /Spectral Digits/media/img/handsOn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/handsOn.jpg -------------------------------------------------------------------------------- /Spectral Digits/media/img/handsOnMorph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/handsOnMorph.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/scaled_touches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/scaled_touches.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/spectum_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/spectum_overlay.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/synthlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/synthlabel.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/touchlabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/touchlabel.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/ui_fade_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/ui_fade_l.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/ui_fade_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/ui_fade_r.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/ui_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/ui_screen.png -------------------------------------------------------------------------------- /Spectral Digits/media/img/ui_screen_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/img/ui_screen_sm.png -------------------------------------------------------------------------------- /Spectral Digits/media/piano.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/piano.aif -------------------------------------------------------------------------------- /Spectral Digits/media/this is a test.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/media/this is a test.aif -------------------------------------------------------------------------------- /Spectral Digits/other/graphics.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/other/graphics.ai -------------------------------------------------------------------------------- /Spectral Digits/patchers/MaskFromContacts.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/MaskFromContacts.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/Spectral Shiatsu.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/Spectral Shiatsu.amxd -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/Spectral Massage.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/Spectral Massage.amxd -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/Spectral Massage_contacts.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/Spectral Massage_contacts.amxd -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/blankinstrument.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/blankinstrument.amxd -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/contact_manager.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/contact_manager.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/paramtest.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/paramtest.amxd -------------------------------------------------------------------------------- /Spectral Digits/patchers/ded/poly_fingerspectrum.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/ded/poly_fingerspectrum.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/basic_sample_load.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/basic_sample_load.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/contacts_only.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/contacts_only.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/gradient gl.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/gradient gl.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/pvoc_sampler.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/pvoc_sampler.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/repos shader.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/repos shader.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/repos shader2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/repos shader2.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/dev/spectrum try.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/dev/spectrum try.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/jit.play_fft~.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/jit.play_fft~.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/jit.record_fft~.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/jit.record_fft~.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/mdrawAutom.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/mdrawAutom.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/mdrawContact.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/mdrawContact.maxpat -------------------------------------------------------------------------------- /Spectral Digits/patchers/poly_fingerspectrum2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensel/C74-Max-Examples/HEAD/Spectral Digits/patchers/poly_fingerspectrum2.maxpat --------------------------------------------------------------------------------