Reference for Wiring version 0023+. 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 |

