Thanks for mentioning our project here!
Paul's suggestion is indeed a great way to debug and find out where the issue comes from. You will have to double check every single step of the whole process to find out the issue.
Well, you may want to elaborate on what you exactly want. Are you looking into connecting the VU meters to your DAW in order the show volumes of different tracks? Or is it a completely different application without using a DAW at all?
When it's...
The latter you can easily check by adding Serial.begin(9600); to void setup() like so:
void setup() {
Serial.begin(9600);
usbMIDI.setHandleControlChange(onCC);
< stuff deleted >
}
and by adding some Serial.print()s to void onCC(byte...
Is this the project you are referring to: https://www.bluecataudio.com/Blog/tip-of-the-day/building-a-midi-controlled-analog-vu-meter/ ?
What exactly does not work and what did you try? Can you share your code for review?
Are you sure the DAW...
Hey everyone, first time here.
I recently came across a project that I wanted to build. It consists of a Teensy 4.0 working through MIDI - USB with a DAW plug-in ( DP meter Pro ) that allows you to send midi to the teensy ——> converts to analog...