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.
- Host: GitHub
- URL: https://github.com/nthe/daw-virtual-keyboard
- Owner: nthe
- Created: 2020-04-08T07:22:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-08T10:29:29.000Z (about 5 years ago)
- Last Synced: 2024-07-24T10:34:12.113Z (10 months ago)
- Topics: ableton, bitwig, keyboard, typescript, virtual
- Language: TypeScript
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Virtual Keyboard
Zero-dependency DAW-like (Ableton/Bitwig style) virtual piano keyboard.
**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'
})
```