How to get 14bit midi into Renoise?

Hello,
Should 14bit messages automatically be detected/mapped as such?
If so, does anyone know what that message should look like?
I had read that it’s the most significant 7 bits on one CC and the lesser bits 32 CCs up (e.g. CC1 & CC33), but that doesn’t seem to work, when i send these messages from pure data to renoise.
Any suggestions?
Thanks :slight_smile:

its CC0 (MSB) and CC32(LSB)

Eh sry. its CC1 and 33 for 14bit. mod wheel + smooth incease.
it depends on how this is implemented in the hw device. you can also use other CC pairs

local function Send14Bit(value)
  local msb = math.floor(value / 128)
  local lsb = value % 128
  send_midi(0x0B, 1, msb)
  send_midi(0x0B, 33, lsb)
end

its only proof of concept :slight_smile:

Ah now it’s working. Had something mixed up with the sequence and channels.
But how would i map it to a parameter in renoise?

Hello,
I tried to quickly create a doofer that sends 14bit CC to the Instrument. It somehow works, but when I have time I’ll look at it again.

Send14BitMidi.xrdp (32.2 KB)

Edit:
Ugh, that’s stupid, forget it.
I guess I’d better go to bed.

Hm thanks a bunch anyway and sleep well^^

Also: how can it be that this is not more of a thing, considering how much more usable midi would be with larger range, e.g. for timings, frequencies and so on?
Have I missed something really great?^^’