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  

true

   
Examples  
boolean b = true; 
if(b == true) { 
  digitalWrite(48, HIGH);  // Turn ON the I/O board LED 
} else { 
  digitalWrite(48, HIGH); 
} 

Description   Reserved word representing the logical value "true". Only variables of type boolean may be assigned the value true
   
Syntax  
false
   
Usage   Web & Application
   
Related   false
boolean