Reference for Wiring version 0024+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.

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 Application
Related true
boolean
Updated on November 01, 2009 12:34:46pm PST

Creative Commons License