Hi @niels and other ctrldev driver developers!
I just implemented and pushed to Vangelis branch a mechanism to allow unrouting a list of specific MIDI channels from the driver. You can specify a bitwise mask with the channels you want to unroute, like this:
unroute_from_chains = 0b0000000000000011
to unroute MIDI channels 0 & 1.
To unroute all MIDI channels, you can still use the boolean value:
unroute_from_chains = True
or specify the bitwise mask like this:
unroute_from_chains = 0b1111111111111111
or this:
unroute_from_chains = 0xF
Good coding!