pxt-microbit
Version:
micro:bit target for Microsoft MakeCode (PXT)
43 lines (28 loc) • 1.15 kB
Markdown
Check if the @boardname@ logo is currently being pressed.
```sig
input.logoIsPressed()
```

This block requires the [micro:bit V2](/device/v2) hardware. If you use this block with a micro:bit v1 board, you will see the **927** error code on the screen.
The logo on the @boardname@ works just like a touch pin. You can check the whether or not the logo is currently being pressed. You use the [boolean](/types/boolean) value for the status of the logo press to make a logical decision in your program.
* a [boolean](types/boolean) value that is `true` if the logo is pressed, `false` if the logo is not pressed.
Show an icon on the LEDs while the logo is pressed.
```blocks
basic.forever(function () {
if (input.logoIsPressed()) {
basic.showIcon(IconNames.Diamond)
} else {
basic.clearScreen()
}
})
```
[](/device/v2),
[](/reference/input/on-logo-event),
[](/reference/input/pin-is-pressed),
[](/reference/pins/touch-set-mode)