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  

false

   
Examples  
boolean b = false; 
if(b == false) { 
  digitalWrite(48, HIGH);  // Turns on the I/O board LED 
} else { 
  digitalWrite(48, LOW); 
} 

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