e94ac6f6f1
* renaming brick.setLight to brick.setStatusLight * updated docs
1.6 KiB
1.6 KiB
on Event
Run some code when a button is clicked, pressed down, or released.
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
});
~hint
Touch sensors
Your @boardname@ has touch sensors that work like buttons. Instead of saying enter
or left
as the source button, use a touch sensor block with a sensor name like touch 1
.
sensors.touch1.onEvent(ButtonEvent.Pressed, function () {
brick.setStatusLight(StatusLight.Orange);
});
Read about touch sensors and using them as touch buttons.
~
Parameters
- ev: the button action to run some code for. The button actions (events) are:
click
: button was clicked (pressed and released)up
: button is released from just being presseddown
: button is just pressed down
- body: the code you want to run when something happens with a button
Example
Check for event on the ENTER button. Put a message on the screen when the button is pressed, clicked, or released.
brick.showString("ENTER is: UP", 1);
brick.buttonEnter.onEvent(ButtonEvent.Released, function () {
brick.showString("ENTER is: UP ", 1);
});
brick.buttonEnter.onEvent(ButtonEvent.Pressed, function () {
brick.showString("ENTER is: DOWN ", 1);
});
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
brick.showString("ENTER was: CLICKED", 1);
});