Show HN: OpenDeck – Platform for building MIDI controllers
1–8 of 8 posts
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#2I've built my own for a midi-cv controller for modular synth, and it was way more work than I anticipated. I'm curious if other complete and flexible solutions exist?
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#3Does anyone know any existing open source that aims for the reverse of this? i.e. works as a midi data receiver (app or plugin) and maps to hardware/physical outputs? I've built my own for a midi-cv controller for modular synth, and it was way more work than I anticipated. I'm curious if other complete and flexible solutions exist?
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#4I built an "air" MIDI controller with a regular Arduino Uno and cheap HC-SR04 sensors. This is me playing it: https://www.youtube.com/watch?v=tgH-WU-9CZA (Sorry for the silly wig).
Flashing UsbMidiKlik to have a compliant MIDI device is kind of a pain (but not horrible).
I may try to experiment with this and a Teensy... Thanks!!
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#5Does anyone know any existing open source that aims for the reverse of this? i.e. works as a midi data receiver (app or plugin) and maps to hardware/physical outputs? I've built my own for a midi-cv controller for modular synth, and it was way more work than I anticipated. I'm curious if other complete and flexible solutions exist?
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#6Wow, this is excellent! Why only the Arduino Mega though? I built an "air" MIDI controller with a regular Arduino Uno and cheap HC-SR04 sensors. This is me playing it: https://www.youtube.com/watch?v=tgH-WU-9CZA (Sorry for the silly wig). Flashing UsbMidiKlik to have a compliant MIDI device is kind of a pain (but not horrible). I may try to experiment with this and a Teensy... Thanks!!
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#7Does anyone know any existing open source that aims for the reverse of this? i.e. works as a midi data receiver (app or plugin) and maps to hardware/physical outputs? I've built my own for a midi-cv controller for modular synth, and it was way more work than I anticipated. I'm curious if other complete and flexible solutions exist?
Re: Show HN: OpenDeck – Platform for building MIDI controllers
#8Does anyone know any existing open source that aims for the reverse of this? i.e. works as a midi data receiver (app or plugin) and maps to hardware/physical outputs? I've built my own for a midi-cv controller for modular synth, and it was way more work than I anticipated. I'm curious if other complete and flexible solutions exist?
https://github.com/djipco/webmidi
You can send and receive MIDI messages with this library both from the browser and within a Node context.
Along the lines of the React/browser lifecycle, I would be careful with listening to MIDI inputs.
You have to add guards for when an input no longer exists and be careful when creating listeners. React Hooks help with this but it's easy to create footguns if you're reading and sending MIDI data.