int tiempo=3000;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
Serial.print("El tiempo de espera es =");
Serial.print(tiempo);
Serial.println("ms.");// put your main code here, to run repeatedly:
Serial.println("Realizado por:");
Serial.println ("1.Valentina Sevillano");
Serial.println("2.Alessia Figueroa");
Serial.println("Curso : 1RO BGU A");
delay(tiempo); // this speeds up the simulation
}