0.0.13 • Published 8 years ago

midium v0.0.13

Weekly downloads
49
License
-
Repository
github
Last release
8 years ago

Midium - Web MIDI API wrapper

Midium is a very simple, device oriented Web MIDI API wrapper. It makes you able to send and receive notes and other messages from MIDI devices with writing less code.

TODO: write documentation

var moog = Midium('moog');
moog.notePress('c#4', 1000);
var all = Midium.select('');

all.onNoteOn(function(event) {
	playSound(event.note);
});

all.onNoteOff(function(event) {
	stopSound(event.note);
});
0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago