ArrayArrayArrayArrayArrayArrayArrayArray BrainModular BrainModular Users Forum 2023-01-13T12:29:14+02:00 https://brainmodular.com/forums/app.php/feed/topic/7100 2023-01-13T12:29:14+02:00 2023-01-13T12:29:14+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44665#p44665 <![CDATA[Re: Converting CC value to DMX values]]> You have to make the conversion with usine and send dmx flow directly on a dmx interface.

Statistics: Posted by joffo78 — 13 Jan 2023, 11:29


]]>
2023-01-07T21:15:11+02:00 2023-01-07T21:15:11+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44651#p44651 <![CDATA[Re: Converting CC value to DMX values]]> Comes with a cost for sure.
There's a usb to dmx thingo from dmx King that is a cheaper alternative.

Statistics: Posted by oli_lab — 07 Jan 2023, 20:15


]]>
2023-01-07T15:15:07+02:00 2023-01-07T15:15:07+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44648#p44648 <![CDATA[Re: Converting CC value to DMX values]]>
Can you give me advice for a midi to DMX box ?

Thanks again

Statistics: Posted by noise2sine — 07 Jan 2023, 14:15


]]>
2023-01-05T00:05:27+02:00 2023-01-05T00:05:27+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44636#p44636 <![CDATA[Re: Converting CC value to DMX values]]> You'll need a dmx interface
Check dmx king

Statistics: Posted by oli_lab — 04 Jan 2023, 23:05


]]>
2023-01-04T17:24:16+02:00 2023-01-04T17:24:16+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44629#p44629 <![CDATA[Re: Converting CC value to DMX values]]> If you want to strictly convert all CC input in dmx you can use the following script ( see example)
//////////////////////////////////////////////////////
// MIDI CC to ARRAY
//////////////////////////////////////////////////////

//////////////////////////////////////////////////////
// Paramters declaration
//////////////////////////////////////////////////////
var input : Tparameter;
var output: Tparameter;
var reset : Tparameter;

//////////////////////////////////////////////////////
// initialisation procedure
//////////////////////////////////////////////////////
procedure init;
begin
input := CreateParam('midi in',ptMIDI,pioInput);

output := CreateParam('array out',ptArray,pioOutput);
output.Min(0);
output.Max(1);
output.Length(128);

reset := CreateParam('reset',ptButton,pioInput);

ModuleColor($FF3298DB);

end;

// Global Variables
var MIDI : TMIDI;

//////////////////////////////////////////////////////
// Main Loop procedure
//////////////////////////////////////////////////////
Procedure Process;
var i: integer;
begin
output.Length(128);
if reset.equal1
then begin
for i:=0 to 127
do output.asArray(i,0);
reset.asFloat(0);
end;
for i := 0 to getLength(input)-1
do begin
MIDI := input.asMidi(i);
if (MIDI.msg=176)

then begin
output.asArray(MIDI.data1,MIDI.data2/127);
end
else
if (MIDI.msg=128)
then begin
output.asArray(MIDI.data1,0);
end;

end;
end;
CONVERT CC TO DMX.wkp

Statistics: Posted by joffo78 — 04 Jan 2023, 16:24


]]>
2023-01-04T14:55:11+02:00 2023-01-04T14:55:11+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44628#p44628 <![CDATA[Re: Converting CC value to DMX values]]>
Thank you !

Statistics: Posted by noise2sine — 04 Jan 2023, 13:55


]]>
2023-01-04T14:16:02+02:00 2023-01-04T14:16:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44627#p44627 <![CDATA[Re: Converting CC value to DMX values]]> In Usine DMX is a value in the range [0..1] and CC is a value in the range [0..127]. So a simple change scale does the trick?

see

Statistics: Posted by senso — 04 Jan 2023, 13:16


]]>
2023-01-04T11:55:20+02:00 2023-01-04T11:55:20+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44626#p44626 <![CDATA[Converting CC value to DMX values]]>
Is it possible in Usine to convert from a CC value module data into DMX values ? I have a patch which send CC values but i need that this patch can send CC values converted to DMX ?

Help !!!!

Thank you !

Statistics: Posted by noise2sine — 04 Jan 2023, 10:55


]]>
BrainModular BrainModular Users Forum 2023-01-13T12:29:14+02:00 https://brainmodular.com/forums/app.php/feed/topic/7100 2023-01-13T12:29:14+02:00 2023-01-13T12:29:14+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44665#p44665 <![CDATA[Re: Converting CC value to DMX values]]> You have to make the conversion with usine and send dmx flow directly on a dmx interface.

Statistics: Posted by joffo78 — 13 Jan 2023, 11:29


]]>
2023-01-07T21:15:11+02:00 2023-01-07T21:15:11+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44651#p44651 <![CDATA[Re: Converting CC value to DMX values]]> Comes with a cost for sure.
There's a usb to dmx thingo from dmx King that is a cheaper alternative.

Statistics: Posted by oli_lab — 07 Jan 2023, 20:15


]]>
2023-01-07T15:15:07+02:00 2023-01-07T15:15:07+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44648#p44648 <![CDATA[Re: Converting CC value to DMX values]]>
Can you give me advice for a midi to DMX box ?

Thanks again

Statistics: Posted by noise2sine — 07 Jan 2023, 14:15


]]>
2023-01-05T00:05:27+02:00 2023-01-05T00:05:27+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44636#p44636 <![CDATA[Re: Converting CC value to DMX values]]> You'll need a dmx interface
Check dmx king

Statistics: Posted by oli_lab — 04 Jan 2023, 23:05


]]>
2023-01-04T17:24:16+02:00 2023-01-04T17:24:16+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44629#p44629 <![CDATA[Re: Converting CC value to DMX values]]> If you want to strictly convert all CC input in dmx you can use the following script ( see example)
//////////////////////////////////////////////////////
// MIDI CC to ARRAY
//////////////////////////////////////////////////////

//////////////////////////////////////////////////////
// Paramters declaration
//////////////////////////////////////////////////////
var input : Tparameter;
var output: Tparameter;
var reset : Tparameter;

//////////////////////////////////////////////////////
// initialisation procedure
//////////////////////////////////////////////////////
procedure init;
begin
input := CreateParam('midi in',ptMIDI,pioInput);

output := CreateParam('array out',ptArray,pioOutput);
output.Min(0);
output.Max(1);
output.Length(128);

reset := CreateParam('reset',ptButton,pioInput);

ModuleColor($FF3298DB);

end;

// Global Variables
var MIDI : TMIDI;

//////////////////////////////////////////////////////
// Main Loop procedure
//////////////////////////////////////////////////////
Procedure Process;
var i: integer;
begin
output.Length(128);
if reset.equal1
then begin
for i:=0 to 127
do output.asArray(i,0);
reset.asFloat(0);
end;
for i := 0 to getLength(input)-1
do begin
MIDI := input.asMidi(i);
if (MIDI.msg=176)

then begin
output.asArray(MIDI.data1,MIDI.data2/127);
end
else
if (MIDI.msg=128)
then begin
output.asArray(MIDI.data1,0);
end;

end;
end;
CONVERT CC TO DMX.wkp

Statistics: Posted by joffo78 — 04 Jan 2023, 16:24


]]>
2023-01-04T14:55:11+02:00 2023-01-04T14:55:11+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44628#p44628 <![CDATA[Re: Converting CC value to DMX values]]>
Thank you !

Statistics: Posted by noise2sine — 04 Jan 2023, 13:55


]]>
2023-01-04T14:16:02+02:00 2023-01-04T14:16:02+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44627#p44627 <![CDATA[Re: Converting CC value to DMX values]]> In Usine DMX is a value in the range [0..1] and CC is a value in the range [0..127]. So a simple change scale does the trick?

see

Statistics: Posted by senso — 04 Jan 2023, 13:16


]]>
2023-01-04T11:55:20+02:00 2023-01-04T11:55:20+02:00 https://brainmodular.com/forums/viewtopic.php?t=7100&p=44626#p44626 <![CDATA[Converting CC value to DMX values]]>
Is it possible in Usine to convert from a CC value module data into DMX values ? I have a patch which send CC values but i need that this patch can send CC values converted to DMX ?

Help !!!!

Thank you !

Statistics: Posted by noise2sine — 04 Jan 2023, 10:55


]]>