Simple monitor for displaying MIDI status for digital pianos.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

README.md 732 B

3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
1234567891011121314151617181920212223242526272829303132333435363738
  1. # piano-midi-monitor
  2. Simple monitor for displaying MIDI status for digital pianos.
  3. Supports a keyboard span of 9 octaves (C0-B8, MIDI note number 12-119), as well as
  4. pedal status for soft pedal/una corda (MIDI CC number 67, binary switch: 0-63 is off,
  5. 64-127 is on), sostenuto (MIDI CC number 66, binary switch: 0-63 is off, 64-127 is on),
  6. and sustain (MIDI CC number 64, values from 0-127).
  7. ![Screenshot](./docs/screenshot.png)
  8. Tested with Node v.14.1.0
  9. ## Instructions
  10. ### Building
  11. Just run:
  12. ```shell script
  13. yarn build
  14. ```
  15. A directory `dist/` should be generated along with build output.
  16. ### Development
  17. Just run:
  18. ```
  19. yarn start
  20. ```
  21. Electron should spawn the application window.
  22. ## License
  23. [MIT License](./LICENSE)