Para el proyecto de ciencias de 6 Grado de mi hija hemos trabajado juntos, hemos realizado un proyecto con Arduino.
For my daughter's 6th grade science project we have worked together, we have made a project with Arduino.
Hemos simulado un pequeño semáforo utilizando una bombilla de plástico, esas que vienen en las botellas de agua gasificada o soda.
We have simulated a small traffic light using a plastic bulb, the kind that comes in carbonated water or soda bottles.
He utilizado un led rojo, uno verde y amarillo, conectados a la placa arduino a los puertos 11, 12 y 13. He utilizado una protoboard para poder reutilizar los componentes para otro proyecto.
I have used a red, a green and a yellow led, connected to the arduino board at ports 11, 12 and 13. I have used a breadboard to be able to reuse the components for another project.
a cada led le soldé un cable para llegar hasta la protoboard que hace de interfase con la placa Arduino Mega.
I soldered a cable to each led to reach the breadboard that interfaces with the Arduino Mega board.
De paso te comparto el código que he utilizado:
By the way I share the code I used:
const int VERDE=13;
const int AMARILLO=12;
const int ROJO=11;
int tiempoEspera = 100;
void setup()
{
pinMode(VERDE,OUTPUT);
pinMode(AMARILLO,OUTPUT);
pinMode(ROJO,OUTPUT);
}
void loop()
{
digitalWrite(VERDE,HIGH);
delay(5000);
digitalWrite(VERDE,LOW);
digitalWrite(AMARILLO,HIGH);
delay(2000);
digitalWrite(AMARILLO,LOW);
delay(tiempoEspera);
digitalWrite(AMARILLO,HIGH);
delay(1000);
digitalWrite(AMARILLO,LOW);
delay(tiempoEspera);
digitalWrite(AMARILLO,HIGH);
delay(1000);
digitalWrite(AMARILLO,LOW);
delay(tiempoEspera);
digitalWrite(AMARILLO,HIGH);
delay(500);
digitalWrite(AMARILLO,LOW);
digitalWrite(ROJO,HIGH);
delay(5000);
digitalWrite(ROJO,LOW);
digitalWrite(AMARILLO,HIGH);
delay(2000);
digitalWrite(AMARILLO,LOW);
}
Ahora solo resta llegar a la feria de ciencias para ver el rostro de las personas.
Now all that remains is to get to the science fair to see people's faces.