You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm super new at this and I'm sure this is a very simple task to achieve.
I need to send CC messages to control Bias FX pedals and have done this so far:
`#include <Control_Surface.h>
void setup() {
// put your setup code here, to run once:
Control_Surface.begin();
}
void loop() {
// put your main code here, to run repeatedly:
Control_Surface.loop();
}`
But every time I press the button it sends on (127) when I press and off (0) when I release the button. How can I change my code to make the button behave as a toggler?
Huge thanks in advance!!
The text was updated successfully, but these errors were encountered:
Yes I found it right after I asked you the question and it worked flawlessly.
Huge thanks for this library, it has made the life of a complete noob like me super easy!
Hi! I'm super new at this and I'm sure this is a very simple task to achieve.
I need to send CC messages to control Bias FX pedals and have done this so far:
`#include <Control_Surface.h>
HairlessMIDI_Interface midi;
CCButton buttons[] = {
{2, {MIDI_CC::Foot_Controller, CHANNEL_1}}
};
void setup() {
// put your setup code here, to run once:
Control_Surface.begin();
}
void loop() {
// put your main code here, to run repeatedly:
Control_Surface.loop();
}`
But every time I press the button it sends on (127) when I press and off (0) when I release the button. How can I change my code to make the button behave as a toggler?
Huge thanks in advance!!
The text was updated successfully, but these errors were encountered: