pxt-calliope/docs/reference/logic/if.md
2016-05-19 13:56:24 -07:00

692 B

If

@parent blocks/language

Conditionally run code depending on whether a Boolean condition is true or false.

if(true) {
}

In the Block Editor, click on the dark blue gear icon (see above) to add an else or if to the current block.

Example: adjusting screen brightness

if(input.lightLevel()<100){
    led.setBrightness(255);
}

If the light level is < 100, this code sets the brightness to 255:

Lessons

love meter, zoomer

See also

while loop, for, boolean