]> git.piffa.net Git - sketchbook_andrea/blobdiff - basic/blinks/blink_1_variabili/blink_1_variabili.ino
multi cleanup
[sketchbook_andrea] / basic / blinks / blink_1_variabili / blink_1_variabili.ino
index ec6c3c02db81c87086de04fb181f5d48bdc2e284..86a1171fcc9fbb45fa53ef26c1ed485431025ce4 100644 (file)
@@ -11,8 +11,7 @@
 // //////////////
 // Dichiarazione variabili
 
-// Pin 13 has an LED connected on most Arduino boards.
-// give it a name:
+// Pin 13 ha un LED preconfigurato su molte schede Arduino
 int led = 13;
 int breve = 200;  // Variabile richiambile nel corso dell'esecuzione
 int lunga = 1000;
@@ -20,7 +19,7 @@ int lunga = 1000;
 // /////////////////
 // Setup: eseguita una volta sola all'accensione della scheda
 void setup() {                
-  // initialize the digital pin as an output.
+  // Inizializziamo il PIN 13 come OUTPUT
   pinMode(led, OUTPUT);     
 }