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  

setup()

   
Examples  
void setup() { 
  pinMode(0, OUTPUT); 
  Serial.begin(9600); 
} 
 
void loop() { 
  Serial.print('.'); 
  delay(1000); 
} 

Description   Function called once when the program begins running. Used to define initial enviroment properties such as a pin mode (INPUT or OUTPUT), starting the serial port etc. before the loop() begins executing. Variables declared within setup() are not accessible within loop().
   
Syntax  
void setup() {
  statements
}
   
Parameters  
statements   any valid statements

   
Returns   None
   
Usage   Web & Application
   
Related   loop()