Page 1 of 1

COEF MP 700 ZOOM unable to turn on light

Posted: 20 Aug 2018, 06:05
by colourwolf1st
HI boss.

I have write a fxt file for MP 700 zoom, but unable to turn on the light.
I'm using AVOLITE previously, inside there is a macro code to on/off the light.

MACRO "LAMP ON" 1 2 3 4
"data" 0 0 0 0
"data" 0 0 ff ff
"delay" 1 5
"data" 0 0 0 0
MEND
;
MACRO "LAMP OFF" 2 2 3 4
"data" 0 ff 0 0
"data" 0 ff ff ff
"delay" 1 5
"data" 0 ff 0 0
MEND
;
MACRO "RESET" 3 1 2 3
"data" 0 0 0 0
"data" 0 0 ff ff
"delay" 1 5
"data" 0 0 0 0
MEND

On freestyler, how to write this macro code into the fxt file?

Thanks for help.

Re: COEF MP 700 ZOOM unable to turn on light

Posted: 20 Aug 2018, 08:58
by remco_k
From the manual: (I found here: http://www.usedstage.ru/foto/light/coef/MP700ZOOM.pdf)
When the lamp control via DMX (CDMX) and the reset via DMX (RDMX) function
have been activated in the configuration menu, it’s possible, by a combination of
the channels values, to control the lamp switch ON/OFF or to allow the projector

MASTER RESET.
Lamp ON via DMX:
CHANNEL 2 = value 0
CHANNEL 3 and CHANNEL 4 = value 0 > 255 > 0
Lamp OFF via DMX:
CHANNEL 2 = value 255
CHANNEL 3 and CHANNEL 4 = value 0 > 255 > 0
MASTER RESET:
CHANNEL 1 = value 0
CHANNEL 2 and CHANNEL 3 = value 0 > 255 > 0
Since (for what I know) Macro's in FreeStyler are single step's you would have to create 2 macro's for each function. For example, Lamp ON:
Macro 1: ch2=0, ch3=0, ch4=0
Macro 2: ch2=0, ch3=255, ch4=255
Then, when in FreesTyler and you need to turn on the lamp, execute macro's: 1, then 2 and then 1 again.
Your lamp should be ON after that.

Re: COEF MP 700 ZOOM unable to turn on light

Posted: 01 Sep 2018, 16:24
by colourwolf1st
Hi boss,

Create 2 macro for light ON, and 2 macro for light off. Now is able to on / off light by using macro

ON light need to click sequence > macro 1, macro 2 , macro 1.

OFF light need to click sequence > macro 3, macro 4 , macro 3.

Is that possible to create a shortcut key to execute macro 1>2>1 into a single click?