Page 15 - Proyecto
P. 15

Conexión con Arduino





             diagrama






































             Codificación




                               // Práctica encender y apagar un LED
                               const int LED=13;
                               void setup()
                               {
                               pinMode(LED,OUTPUT);
                               }
                               void loop()
                               {
                               digitalWrite(LED,HIGH);
                               delay(1000);
                               digitalWrite(LED,LOW);
                               delay(1000);
                               }

















                                                           10
   10   11   12   13   14   15   16   17   18   19   20