Button Is Pressed

Check whether a button is pressed right now. The Calliope mini has two buttons: button A and button B.

input.buttonIsPressed(Button.A);

Parameters

Returns

Example

This program uses an if to run one part of the program if the A button is pressed, and another part if it is not pressed.

basic.forever(() => {
    let pressed = input.buttonIsPressed(Button.A)
    if (pressed) {
        // this part runs if the A button is pressed
        basic.showNumber(1, 150)
    } else {
        // this part runs if the A button is *not* pressed
        basic.showNumber(0, 150)
    }
})

See also

on button pressed, if, forever

Edit this page on GitHub