Simple monitor for displaying MIDI status for digital pianos.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
vor 3 Jahren
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)