https://github.com/dy/piano-game
Guess notes from stave
https://github.com/dy/piano-game
Last synced: about 1 year ago
JSON representation
Guess notes from stave
- Host: GitHub
- URL: https://github.com/dy/piano-game
- Owner: dy
- Created: 2015-08-25T01:52:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-03-11T01:14:24.000Z (over 5 years ago)
- Last Synced: 2025-03-16T23:37:04.395Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://dy.github.io/piano-game/
- Size: 1.81 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[The Piano Game](https://audio-lab.github.io/piano-game).
Guess notes from stave.
[](https://nodei.co/npm/piano-game/)
```js
var PianoGame = require('piano-game');
var audioContext = require('audio-context');
var game = new PianoGame({
element: document.querySelector('.piano-game'),
context: audioContext,
range: ['c2', 'c#3'], //range of keys to ask
maxNotes: 4, //maximum number of notes in a question
requireOctave: false //require exact octave for a note
});
```
# Similar
* [musictheory.net](http://www.musictheory.net/exercises/keyboard-reverse)
* [piano-trainer](https://github.com/philippotto/Piano-Trainer)