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

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

Awesome Lists containing this project

README

          

[The Piano Game](https://audio-lab.github.io/piano-game).

Guess notes from stave.

[![npm install piano-game](https://nodei.co/npm/piano-game.png?mini=true)](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)