From cc64fd1bb7bed5c182126449f1067b1deb1102d3 Mon Sep 17 00:00:00 2001 From: Justin Latimer Date: Sat, 3 Sep 2011 01:19:11 +1000 Subject: [PATCH] Update the readme with more description of ignoreTypes and include the contributors section. --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33d559b..09fd208 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,11 @@ Input: // Open the first available input port. input.openPort(0); - // Don't ignore sysex, timing, or active sensing messages. - input.ignoreTypes( false, false, false ); + // Sysex, timing, and active sensing messages are ignored + // by default. To enable these message types, pass false for + // the appropriate type in the function below. + // Order: (Sysex, Timing, Active Sensing) + input.ignoreTypes(false, false, false); // ... receive MIDI messages ... @@ -98,6 +101,11 @@ The same can be done with output ports. * http://music.mcgill.ca/~gary/rtmidi/ * http://syskall.com/how-to-write-your-own-native-nodejs-extension +## Contributors + + * Justin Latimer + * Luc Deschenaux + ## License Copyright (C) 2011 by Justin Latimer.