midibutton

1.0.1 • Public • Published

MIDI Button

MIDI Button is a simple way to interface with MIDI Controllers.

Installation

$ npm install midibutton -S

Usage

const MIDIButton = require('midibutton')
let pad = new MIDIButton(0)
 
pad.on('discoverKey', key => {
    key.on('down', () => {
        console.log('Key down', key)
    })
})
 
pad.on('discoverKnob', knob => {
    knob.on('change', () => {
        console.log('Knob change', knob)
    })
})
 

Further documentation can be found in the documentation directory in the repo.

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    1
  • 1.0.0
    0

Package Sidebar

Install

npm i midibutton

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • connormcf