Paso 4: Añadir el código!
sólo copiar desde abajo y subirlo a la placa a través de USB.
greenled int = 8; LEDs y pernos
int yellowled = 9;
int rojo = 10;
void setup()
{
pinMode (greenled, salida); Pinmodes de los leds
pinMode (yellowled, salida);
pinMode (rojo, salida);
}
void loop()
{
digitalWrite (greenled, HIGH); Verde en 5 segundos
Delay(5000);
digitalWrite (greenled, LOW); Verde apagado, amarillo en 2 segundos
digitalWrite (yellowled, HIGH);
Delay(2000);
digitalWrite (yellowled, bajo); amarillo apagado, rojo en 5 segundos
digitalWrite (rojo, alto);
Delay(5000);
digitalWrite (yellowled, HIGH); Amarillo y rojo en 2 segundos
Delay(2000);
digitalWrite (rojo, baja); Rojo y amarillo de
digitalWrite (yellowled, bajo);
}