BOME midi translator. You do not have to calculate anything. Set the imput and output hardware, draw a line between them. Push the footswitch for it to learn the comand and tell it which output NRPN message to send to KPA.
Thx a lot,
With that you can record the current value.
But I like set a value between 0 to 100% on a ramp function. or expression pedal
From the Kemper MIDI example:
“Reverb/Mix” is at NRPN #9603, so MSB (“address page”) is 75 ($4B) and LSB (“address number”) is
3 ($03).
To send a 14-bit high resolution value to 8192:
$B0 $63 $4B <- Addresspage
$B0 $62 $03 <- address number
$B0 $06 $40 <- MSB
$B0 $26 $00 <- LSB
By the way this example is outdated because Adresspage 75 no longer exists since KAOS Version 6 but Kemper still publish examples that can't work
So this calculation for MSB/LSB (SHR means Bitshift Right C++ >> operator , or BITRSHIFT(number, shift_amount) in Excel
So, why $40 and $00? Because 8192 is $2000 and:
a) ($2000 SHR 7) AND $7F = $40 The upper 7 of 14 bits.
b) ($2000 AND $7F) = $00; The lower 7 of 14 bits.