]> git.piffa.net Git - sketchbook_andrea/blobdiff - basic/blinks/blink_2_funzioni/blink_2_funzioni.ino
PWM
[sketchbook_andrea] / basic / blinks / blink_2_funzioni / blink_2_funzioni.ino
index 0655130ab1df4048948d7f6f0f1c4e60db36186a..e1a6066275f1111c4be2e9b8f85ef95c1e7ad0b3 100644 (file)
@@ -1,10 +1,16 @@
+
+// ////////////
+// Commento iniziale
 /*
-  Blink v3
- Now with 2 variables and an extra LED (remember a ~320 ohms resistor).
- Turns on an LED on for one second, then off for one second, repeatedly.
+  Blink v2
+ Accensione e spegnimanto di un LED utilizzando funzioni
+ per comandare il lampeggio.
  
  This example code is in the public domain.
  */
+// //////////////
+// Dichiarazione variabili
 
 // Pin 13 has an LED connected on most Arduino boards.
 // give it a name:
@@ -12,19 +18,22 @@ int led = 13;
 int breve = 200;  // Variabile richiambile nel corso dell'esecuzione
 int lunga = 1000;
 
-// the setup routine runs once when you press reset:
+// /////////////////
+// Setup
 void setup() {                
   // initialize the digital pin as an output.
   pinMode(led, OUTPUT);     
 }
 
-// the loop routine runs over and over again forever:
+// ///////////////
+// loop
 void loop() {
   rapido(); // accende e spegne rapidamente il LED
   rapido(); // accende e spegne rapidamente il LED
   lento();  // accende e spegne lentamente il LED
 }
 
+// ///////////////
 // Funzioni create dall'utente:
 
 void rapido() {