Skip to content

dzink/NodeManagerLibrary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node Manager Library

Examples

Respond to note on and note off with the default server and default synthdef:

~n = NmlKeys();
~n.midiConnectNoteOn();
~n.midiConnectNoteOff();

Create a mono version of the same setup:

~n = NmlMono();
~n.midiConnectNoteOn();
~n.midiConnectNoteOff();

Respond to note on and note off, plus polytouch, with a selected group and custom synthdef:

~group = Group();
~n = NmlKeys(~group, \customKey);
~n.midiConnectNoteOn();
~n.midiConnectNoteOff();
~n.midiConnectPolytouch();

Use actions to get information about the node event after releasing a node:

~n = NmlKeys();
~n.midiConnectNoteOn();
~n.midiConnectNoteOff();
~n.actionPostRelease.add({
  arg id, node, data;
  ~n.nodeInfo[id].postln;
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published