well, looking at the code now,
lets say, if in the config.h one of the CC is set to 128 then in the 16n_Faderbank_Firmware something like (in the midi write loop):
if ( usb_ccs[q] == 128 )
{
usbMIDI.sendPitchBend(shiftyTemp, usb_channels[q]);
}
else
{
usbMIDI.sendControlChange(usb_ccs[q], shiftyTemp, usb_channels[q]);
}
now I have to find where the resolution of the value is scaled and add a similar thing, so the offset and less scaling is done.
thanks a lot!!