• This is slide 1 description. Go to Edit HTML of your blogger blog. Find these sentences. You can replace these sentences with your own words.
  • This is slide 2 description. Go to Edit HTML of your blogger blog. Find these sentences. You can replace these sentences with your own words.
  • This is slide 3 description. Go to Edit HTML of your blogger blog. Find these sentences. You can replace these sentences with your own words.
  • This is slide 4 description. Go to Edit HTML of your blogger blog. Find these sentences. You can replace these sentences with your own words.
  • This is slide 5 description. Go to Edit HTML of your blogger blog. Find these sentences. You can replace these sentences with your own words.

martes, 26 de septiembre de 2017

viernes, 15 de septiembre de 2017

martes, 12 de septiembre de 2017

Semaforo Arduino

void setup () {
 pinMode (2,OUTPUT);
 pinMode (3,OUTPUT);
 pinMode (4,OUTPUT);
}

void loop() {
 digitalWrite(2,HIGH);
 delay(4000);
 digitalWrite(2,LOW);
 delay(2000);
digitalWrite(3,HIGH);
 delay(2000);
 digitalWrite(3,LOW);
 delay(2000);
digitalWrite(4,HIGH);
 delay(4000);
 digitalWrite(4,LOW);
 delay(2000);
 digitalWrite(3,HIGH);
 delay(2000);
 digitalWrite(3,LOW);
 delay(2000);
}