fix(midi): Now treating NoteOn with velocity 0 as NoteOff, see README.md

This commit is contained in:
2025-08-05 21:18:40 +02:00
parent 6c49a4a028
commit 0e3d9e9363
2 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
# midi-hid
This software allows mapping and translating of MIDI commands to HID inputs on Linux.
## Known issues
The midi library used seems to recognise NoteOff messages as NoteOn messages. However, they can still be recognised by checking the velocity, which is always 0 in NoteOff messages. A workaround has been implemented.