Paso 4: Aurduino
Descargue el código a continuación y subirlo a tu arduino.const int LEDone = 9;
const int LEDtwo = 11;
const int LEDthree = 10;
const int LEDfour = 5;
const int LEDfive = 6;
const int LEDsix = 3;
int currentPin = 0;
brillo de int = 0;
void setup() {}
Serial.Begin(9600);
pinMode (LEDone, salida);
pinMode (LEDtwo, salida);
pinMode (LEDthree, salida);
pinMode (LEDfour, salida);
pinMode (LEDfive, salida);
pinMode (LEDsix, salida);
}
void loop() {}
if(serial.Available() > 0) {}
int inByte = Serial.read();
Serial.Write(inByte);
Si (inByte == 'a') {}
currentPin = LEDone;
}
Si (inByte == 'b')
{currentPin = LEDtwo;}
Si (inByte == 'c')
{currentPin = LEDthree;}
Si (inByte == había ') {}
currentPin = LEDfour;
}
Si (inByte == 'e')
{currentPin = LEDfive;}
Si (inByte == 'f')
{currentPin = LEDsix;}
Si (inByte > = 0 & & inByte < = 255) {}
brillo = inByte;
analogWrite (currentPin, brillo);
}
}
}
Probablemente tendrá que alterar la información del puerto en MAX en el archivo que te di para el arduino para hablar con MAX. Otro sabio debe ser bueno para ir.