Skip to content

Commit

Permalink
Update the readme with more description of ignoreTypes and include th…
Browse files Browse the repository at this point in the history
…e contributors section.
  • Loading branch information
Justin Latimer committed Sep 2, 2011
1 parent cd5f8cc commit cc64fd1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Expand Up @@ -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 ...

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit cc64fd1

Please sign in to comment.