2016-03-25 16:47:20 -07:00
# On Button Pressed
2016-05-20 15:33:15 -07:00
Start an [event handler ](/reference/event-handler ) (part of the program that will run when something happens, like when a button is pressed).
This handler works when button `A` or `B` is pressed, or `A` and `B` together.
When you are using this function in a web browser, click the buttons on the screen instead of the ones
2016-11-01 10:42:42 -07:00
on the @boardname @.
2016-03-25 16:47:20 -07:00
2019-12-02 05:58:26 +01:00
* For button `A` or `B` : This handler works when the button is pushed down and released within 1 second.
* For `A` and `B` together: This handler works when `A` and `B` are both pushed down, then one of them is released within 1.5 seconds of pushing down the second button.
2016-03-25 16:47:20 -07:00
```sig
input.onButtonPressed(Button.A, () => {})
```
2019-12-02 05:58:26 +01:00
Find out how buttons provide input to the @boardname @ in this video:
https://www.youtube.com/watch?v=t_Qujjd_38o
## Example: count button clicks
2016-03-25 16:47:20 -07:00
2016-05-20 15:33:15 -07:00
This example counts how many times you press the `A` button.
Each time you press the button, the [LED screen ](/device/screen ) shows the `count` variable getting bigger.
2016-03-25 16:47:20 -07:00
```blocks
let count = 0
basic.showNumber(count)
input.onButtonPressed(Button.A, () => {
count++;
basic.showNumber(count);
})
```
2019-12-02 05:58:26 +01:00
## Example: roll dice
2016-03-25 16:47:20 -07:00
2016-05-20 15:36:37 -07:00
This example shows a number from 1 to 6 when you press the `B` button.
2016-03-25 16:47:20 -07:00
```blocks
input.onButtonPressed(Button.B, () => {
2019-12-02 05:58:26 +01:00
let dice = Math.randomRange(0, 5) + 1
2016-03-25 16:47:20 -07:00
basic.showNumber(dice)
})
```
2019-12-02 05:58:26 +01:00
## ~hint
2016-05-20 15:33:15 -07:00
2019-12-02 05:58:26 +01:00
This program adds a `1` to `random(5)` so the numbers on the dice will come out right.
2016-05-20 15:33:15 -07:00
Otherwise, sometimes they would show a `0` .
2019-12-02 05:58:26 +01:00
## ~
2016-05-20 15:33:15 -07:00
2019-12-02 05:58:26 +01:00
## See also
2016-03-25 16:47:20 -07:00
2016-06-14 17:20:45 -04:00
[button is pressed ](/reference/input/button-is-pressed ), [forever ](/reference/basic/forever ), [random ](/blocks/math )
2016-03-25 16:47:20 -07:00