Index
 
  The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Name  

loop()

   
Examples  
void setup() { 
  pinMode(0, OUTPUT); 
} 
 
 
void loop() { 
  digitalWrite(0, HIGH); 
} 

Description   Continuously executes the lines of code contained inside its block until the program is stopped. The loop() function is used in conjunction with setup(). The number of times loop() executes in each second may be controlled with the delay() and delayMicroseconds() functions.
   
Syntax  
loop() {
  statements
}
   
Parameters  
statements   A sequence of statements to be executed over and over again

   
Returns   None
   
Usage   Web & Application
   
Related   setup()