dagame81
dagame81
```cpp #include HairlessMIDI_Interface midi; using namespace MIDI_Notes; NoteValueLED noteLed = { 13, {note(C,4), CHANNEL_1}}; CCButton button = { // Push button on pin 5: 7, // General Purpose Controller #1...
I am testing with this code, but the led does not turn on neither when I map in traktor
```cpp #include HairlessMIDI_Interface midi; using namespace MIDI_Notes; CCButton button = {7, {MIDI_CC::General_Purpose_Controller_1, CHANNEL_5}}; constexpr pin_t ledPin = 12; NoteValueLED led = { 12, // Pin of built-in LED {note(C, 4),...
What does not allow me to map is the led, the button maps it perfectly but the led does not. In traktor as in other softwares I suppose that you...
I have tried it with the examples that you have especially the NOTE-LED example assigned to it the C-4 but nothing. #include // Include the Control Surface library // Instantiate...
Hello again , the problem is traktor that does not send data to hairless. I already solved it, when using mac, I had to create a separate midi device so...
Hello again, i am going to take a risk and will mount it with my Arduino Mega, i would like you to tell me how i can increase the codes...
``` Arduino:1.8.10 (Mac OS X), Tarjeta:"Arduino/Genuino Uno" /Users/pablogalindoaloy/Desktop/Arduino/MIDI_controller-3.1.1/examples/Ex.01.Potentiometer/Ex.01.Potentiometer.ino:22:13: warning: 'Analog' is deprecated Analog potentiometer(A0, MIDI_CC::Channel_Volume, 1); ^~~~~~~~~~~~~~~~~~~~~~~~ /Users/pablogalindoaloy/Desktop/Arduino/MIDI_controller-3.1.1/examples/Ex.01.Potentiometer/Ex.01.Potentiometer.ino:23:13: warning: 'Analog' is deprecated Analog potenciometer(A1, MIDI_CC::Channel_Volume, 2); ^~~~~~~~~~~~~~~~~~~~~~~~ /Users/pablogalindoaloy/Desktop/Arduino/MIDI_controller-3.1.1/examples/Ex.01.Potentiometer/Ex.01.Potentiometer.ino:24:13: warning: 'Analog'...
```cpp #include /* This is an example of the "Analog" class of the MIDI_controller library. Connect a potentiometer to analog pin A0. This will be the MIDI channel volume of...