2016-03-25 16:47:20 -07:00
# Button Is Pressed
2016-05-20 16:05:45 -07:00
Check whether a button is pressed right now. The micro:bit has two buttons: button `A` and button `B` .
2016-03-25 16:47:20 -07:00
```sig
input.buttonIsPressed(Button.A);
```
### Parameters
2016-05-20 16:05:45 -07:00
* ``name`` is a [String](/reference/types/string). You should store ` A` in it to check the left button, ` B` to check the right button, or ` A+B` to check both at the same time.
2016-03-25 16:47:20 -07:00
### Returns
2016-05-20 16:05:45 -07:00
* [Boolean ](/reference/types/boolean ) that is `true` if the button you are checking is pressed, `false` if it is not pressed.
2016-03-25 16:47:20 -07:00
### Example
2016-05-20 16:05:45 -07:00
This program uses an [if ](/reference/logic/if ) to run
one part of the program if the `A` button is pressed, and
another part if it is not pressed.
2016-03-25 16:47:20 -07:00
```blocks
basic.forever(() => {
let pressed = input.buttonIsPressed(Button.A)
if (pressed) {
2016-05-20 16:05:45 -07:00
// this part runs if the A button is pressed
2016-03-25 16:47:20 -07:00
basic.showNumber(1, 150)
} else {
2016-05-20 16:05:45 -07:00
// this part runs if the A button is *not* pressed
2016-03-25 16:47:20 -07:00
basic.showNumber(0, 150)
}
})
```
### Lessons
2016-04-13 08:27:45 -07:00
[zoomer ](/lessons/zoomer )
2016-03-25 16:47:20 -07:00
### See also
2016-04-18 08:33:09 -07:00
[on button pressed ](/reference/input/on-button-pressed ), [if ](/reference/logic/if ), [forever ](/reference/basic/forever )
2016-03-25 16:47:20 -07:00