-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot connect to Launchpad mini mk3 #9
Comments
Hi Simon, |
It's a Launchpad mini mk3 and I'm using Windows. |
Here is my code (this is your example): const Launchpad = require( 'launchpad-mini' ),
pad = new Launchpad();
pad.connect().then(() => { // Auto-detect Launchpad
pad.reset( 2 ); // Make Launchpad glow yellow
pad.on( 'key', k => {
// Make button red while pressed, green after pressing
pad.col( k.pressed ? pad.red : pad.green, k );
} );
}).catch(err => { console.log(err) }); |
Ah. The code does not support the Mk3 yet, I would need to get it somewhere and test it. Unless you feel like extending this package, but depending on the protocol change it might require some work … |
Oh... I have no idea how to develop this, I've never used the midi protocols --' |
Hi, I wanted to try to connect my Launchpad to my pc with launchpad-mini but I always get this error in the console:
No Launchpad on MIDI ports found.
.However my launchpad is well connected via a usb cable to my computer.
Is there a solution ?
Thank you in advance,
Simon
The text was updated successfully, but these errors were encountered: