2022-05-09 19:10:17 +02:00
# On Button Event
2016-03-26 00:47:20 +01:00
2020-09-08 11:04:25 +02:00
Start an [event handler ](/reference/event-handler ) (part of the program that will run when something happens, like when a button is pressed).
2022-08-10 18:36:19 +02:00
This handler works when button `A` or `B` is clicked, or `A` and `B` together. You can choose another event type by using
the [button event block ](/reference/input/button-event ). Possible event types are `pressed down` (1), `released up` (2), `clicked` (3), `long clicked` (4) or `hold` (5).
2016-05-21 00:33:15 +02:00
When you are using this function in a web browser, click the buttons on the screen instead of the ones
2016-11-01 18:42:42 +01:00
on the @boardname @.
2016-03-26 00:47:20 +01: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-26 00:47:20 +01:00
```sig
2022-08-10 18:36:19 +02:00
input.onButtonEvent(Button.A, input.buttonEventClick(), () => {})
2016-03-26 00:47:20 +01:00
```
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-26 00:47:20 +01:00
2020-09-08 11:04:25 +02:00
This example counts how many times you press the `A` button.
2016-05-21 00:33:15 +02:00
Each time you press the button, the [LED screen ](/device/screen ) shows the `count` variable getting bigger.
2016-03-26 00:47:20 +01:00
```blocks
let count = 0
basic.showNumber(count)
2022-08-10 18:36:19 +02:00
input.onButtonEvent(Button.A, input.buttonEventClick(), () => {
2016-03-26 00:47:20 +01:00
count++;
basic.showNumber(count);
})
```
2019-12-02 05:58:26 +01:00
## Example: roll dice
2016-03-26 00:47:20 +01:00
2016-05-21 00:36:37 +02:00
This example shows a number from 1 to 6 when you press the `B` button.
2016-03-26 00:47:20 +01:00
```blocks
2022-08-10 18:36:19 +02:00
input.onButtonEvent(Button.B, input.buttonEventClick(), () => {
2020-09-08 11:04:25 +02:00
let dice = randint(0, 5) + 1
2016-03-26 00:47:20 +01:00
basic.showNumber(dice)
})
```
2019-12-02 05:58:26 +01:00
## ~hint
2016-05-21 00:33:15 +02: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-21 00:33:15 +02:00
Otherwise, sometimes they would show a `0` .
2019-12-02 05:58:26 +01:00
## ~
2016-05-21 00:33:15 +02:00
2019-12-02 05:58:26 +01:00
## See also
2016-03-26 00:47:20 +01:00
2022-08-10 18:36:19 +02:00
[button is pressed ](/reference/input/button-is-pressed ), [forever ](/reference/basic/forever ), [random ](/blocks/math ), [button event block ](/reference/input/button-event )
2016-03-26 00:47:20 +01:00