Bateria Piezos, Arduino y Ableton:
//Guarda el umbral de sensibilidad que disparará la acción
int Umbral;
void setup()
{
pinMode(13, OUTPUT);
// Establece el baud rate del MIDI; Serial.begin(115200);
}
void loop()
{
Umbral=analogRead(5);//Lee el valor del pote para establecer la sensibilidad
if(analogRead(4)>Umbral){
digitalWrite(13,HIGH);
Serial.write( byte(0x9F));
Serial.write( byte(38)); //Key Number para percusion 35 bombo
Serial.write( byte(127)); //Velocidad (es el volumen. De 0 a 127)
delay(150);}
else{
}
Umbral=analogRead(5);//Lee el valor del pote para establecer la sensibilidad
if(analogRead(3)>Umbral){
Serial.write( byte(0x9F));
Serial.write( byte(36)); //Key Number para percusion 35 bombo
Serial.write( byte(127)); //Velocidad (es el volumen. De 0 a 127)
delay(150);}
else{
digitalWrite(13,LOW);
}
}

