COMUNICACIÓN MIDI #include <MIDI.h> const int sustain = 7; int a = 0; int b = 0; const int analogInPin3 = A0; // Analog input pin that the potentiometer is attached to const int analogOutPin3 = 11; // Analog output pin that the LED is attached to const int analogInPin = A2; // Analog input pin that the potentiometer is attached to const int analogOutPin = 9; // Analog output pin that the LED is attached to const int analogInPin2 = A1; // Analog input pin that the potentiometer is attached to const int analogOutPin2 = 10; // Analog output pin that the LED is attached to int sensorValue = 0; // value read from the pot int outputValue = 0; int sensorValue2 = 0; // value read from the pot int outputValue2= 0; int sensorValue3 = 0; // value read from the pot int outputValue3= 0; void setup() { MIDI.begin(); Serial.begin(31250); pinMode(sustain,INPUT); } void loop() { ////////////////////////////////////////////pit...