Framework (A-Z)

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

Name

false

Examples
void setup() 
{
  boolean b = false;
  pinMode(WLED, OUTPUT);
  if (b == false) {
    // turn ON the on-board LED
    digitalWrite(WLED, HIGH);  
  } else {
    digitalWrite(WLED, HIGH);
  }
}

void loop() 
{

}
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 July 07, 2011 11:08:14pm PDT

Creative Commons License