pxt-maker
Version:
Microsoft MakeCode Maker Boards
24 lines (19 loc) • 481 B
Markdown
# Keyboard
A program that uses a pin to generate ``space`` keyboard key events. Connect your board to a computer to test it out!
```blocks
input.buttonD1.onEvent(ButtonEvent.Down, function () {
keyboard.key(" ", KeyboardKeyEvent.Down)
pins.LED.digitalWrite(true)
})
input.buttonD1.onEvent(ButtonEvent.Up, function () {
keyboard.key(" ", KeyboardKeyEvent.Up)
pins.LED.digitalWrite(false)
})
```
```package
keyboard
```
```config
feature=uf2
feature=buttonD1
```