An open API service indexing awesome lists of open source software.

https://github.com/nthe/daw-virtual-keyboard

DAW-like (Ableton/Bitwig style) virtual piano keyboard.
https://github.com/nthe/daw-virtual-keyboard

ableton bitwig keyboard typescript virtual

Last synced: 3 months ago
JSON representation

DAW-like (Ableton/Bitwig style) virtual piano keyboard.

Awesome Lists containing this project

README

        

# Virtual Keyboard
Zero-dependency DAW-like (Ableton/Bitwig style) virtual piano keyboard.

![keyboard](./assets/keyboard.png)

**A** to **L** represent white keys.

**W** to **O** represent black keys.

**Z** changes one octave down

**X** changes one octave up

**C** decreases velocity

**V** increases velocity

## Usage

```html



Document




const output = document.getElementById('output')

new VirtualKeyBoard()
.subscribe(data => {
output.innerText += JSON.stringify(data) + '\n'
})

```