This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

martes, 12 de septiembre de 2017

Primeros Bocetos

Boceto 1:
void setup () {
 pinMode (13,OUTPUT);


}

void loop() {
 digitalWrite(13,HIGH);
 delay(1000);
 digitalWrite(13,LOW);
 delay(1000);



}

Boceto 2:
void setup () {
 pinMode (2,OUTPUT);


}

void loop() {
 digitalWrite(2,HIGH);
 delay(4000);
 digitalWrite(2,LOW);
 delay(3000);
digitalWrite(2,HIGH);
 delay(2000);
 digitalWrite(2,LOW);
 delay(1000);


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

}

void loop() {
 digitalWrite(2,HIGH);
 delay(1000);
 digitalWrite(2,LOW);
 delay(1000);
digitalWrite(3,HIGH);
 delay(1000);
 digitalWrite(3,LOW);
 delay(1000);


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

}

void loop() {
 digitalWrite(2,HIGH);
 delay(1000);
 digitalWrite(3,HIGH);
 delay(1000);
digitalWrite(2,LOW);
 delay(1000);
 digitalWrite(3,LOW);
 delay(1000);


}
Boceto 5:
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);
}

martes, 5 de septiembre de 2017

Los automatismos.



1) ¿Qué es un automatismo?
2) Nombra al menos 5 automatismos de la naturaleza
3) Nombra algunos automatismos biológicos 

Respuestas:
1) Un automatismo es la intervención de agentes exteriores en el funcionamiento de un mecanismo o en el desarrollo de un proceso.
2) El día y la noche, las estaciones, el movimiento de los astros en el cielo, los diferentes cambios en la marea.

3) Las cataratas, el sol, el arcoiris y la luna

Robotica/Domotica.