Skip to content

Instantly share code, notes, and snippets.

@hsitz
Created April 9, 2020 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hsitz/87e817c2260da8a29377f0c60c04af7e to your computer and use it in GitHub Desktop.
Save hsitz/87e817c2260da8a29377f0c60c04af7e to your computer and use it in GitHub Desktop.
@OnLoad
fillarray counter, 0, 20
@END
@OnMidiNoteOn
inc counter[midichannel]
sendmidithru
@END
@OnMidiNoteOff
dec counter[midichannel]
if counter[midichannel] = 0
sendmidithru
endif
@END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment