Page 1 of 1

Posted: 27 Nov 2017, 17:40
by joffo78
Hello, i'm try to make a remote control on osc for the yamaha studio manager.
It's the software which control yamaha mixing desk.
I tried to understand how does it work. When i'm moving parameters it sends sysex message with 12 characters that i receive in usine. the 2 last one seems to be for the 10bit control (16384 values) . I'd like to make a patch that receive a value with touch osc and that translate it to sysex which modulate the studio manager parameters .
You can download it for free Here
Thanks.
JF

Posted: 04 Dec 2017, 12:05
by nay-seven
very specific need and maybe not easy to help without the hardware,
but in general case, if you use an array with faders to send your sysex, you can link the OSC out to the array modulation inlet ?

Posted: 04 Dec 2017, 17:44
by oli_lab
10 bit >> 1024 values !

but more likely it is 16bits

intVal = floor(float value * 65535)

then MSB = intVal>>8 (bitewise math...)
and LSB = intVal & 255