-
Notifications
You must be signed in to change notification settings - Fork 27
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
The only ControlChange that works is SustainPedal. #3
Comments
Which controller are you using? |
I've tried volume, and also adding my own |
Is this a MIDI piano or keyboard? Often controls that you might think are CC messages actually send note messages with variable velocities. Which specific model are you using? |
I’m sorry, I should’ve been more specific. I’m trying to make an ouput device that changes knobs in my DAW |
Are you certain that the DAW is mapped in a way that will respond to the specific messages you are sending? Can you show some example code of what you've tried? |
It’s just example02, but changing Sustain to Volume |
`// Copyright (c) 2009, Tom Lokovic using System; namespace MidiExamples /// Demonstrates simple single-threaded output. /// /// /// This example uses the OutputDevice.Send* methods directly to generate output. It uses /// Thread.Sleep for timing, which isn't practical in real applications because it blocks /// the main thread, forcing the user to sit and wait. See Example03.cs for a more realistic /// example using Clock for scheduling. /// class Fader : ExampleBase { public Fader() : base("Fader.cs", "Simple MIDI output example.") { }
} CustomControl is added in the Midi.Control file. Is it possible change a float in the software and change the reverb in ableton? |
I'm trying to control sliders in ableton, but the only CC that works is SustainPedal. Can anyone help me?
The text was updated successfully, but these errors were encountered: