Robe Robin LED Wash Hog2 Library

Hi
Is anybody having a library for the Robe Robin LED Wash for the old Hog2?
I wrote a library, but it's not working properly, as the rgb and white channels don't seem to interest the fixture at all. I tried to get the same dmx default levels as from the Hog3 library.

Below you'll find the library I wrote, maybe somebody sees a mistake.

Thanks

Veit

version = 40
count = 1


//-------------------------------------------------------
fixture = Robin600
manufacturer = 68
product = 54
name = Robin600ledwash
yoke = yes

output = dmx

parameter = Pan
default = 32768
highlight = 32768
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Tilt
default = 32768
highlight = 32768
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Speed
default = 0
highlight = 0
crossfade = 0
type = ltp8bit
range = 0, noauto

parameter = Control
default = 0
highlight = 0
crossfade = 0
type = ltp8bit
range = 0, none, noauto
range = 145, pt reset, noauto
range = 185, zo reset, noauto
range = 205, reset, noauto

parameter = Red
default = 65535
highlight = 0
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Green
default = 65535
highlight = 0
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Blue
default = 65535
highlight = 0
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = White
default = 0
highlight = 0
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Colour
default = 1
highlight = 1
crossfade = 0
type = ltp8bit
range = 1, 255, %

parameter = Colorfx
default = 0
highlight = 0
crossfade = 0
type = ltp8bit
range = 1, 2700k, noauto
range = 5, 3200k, noauto
range = 8, 4200k, noauto
range = 11, 5600k, noauto
range = 16, 247, %
range = 249, rainbow, noauto
range = 250, 255, %

parameter = Zoom
default = 32768
highlight = 32768
crossfade = 0
type = ltp16bit
range = 0, 65535, %

parameter = Strobe
default = 255
highlight = 255
crossfade = 0
type = ltp8bit
range = 255, open, noauto
range = 0, closed, noauto
range = 128, 143, <
range = 144, 159, >>pulse, noauto
range = 192, 223, random, noauto

parameter = Intensity
default = 0
highlight = 65535
crossfade = 0
type = htp16bit
range = 0, 65535, %
  • I am not familiar with this fixture but the library looks ok. You have the default values for RGB at 100% basically. Are you getting any output out of the fixture, solid white by chance? The RGB encoders will need to be rotated to the left for any change to happen on these. You may also try putting the DEFAULT at 0 instead of 65535. You may also try the COLOR DEFAULT at 0 instead of 1, it may not have an effect but it will take that channel to NO FUNCTION. Just a couple of thoughts.
  • I found the solution by giving the color and the color fx a range called none with the value of 0. It looks now like this:

    //-------------------------------------------------------
    fixture = Robin600
    manufacturer = 68
    product = 54
    name = Robin600ledwash
    yoke = yes

    output = dmx

    parameter = Pan
    default = 32768
    highlight = 32768
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Tilt
    default = 32768
    highlight = 32768
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Speed
    default = 0
    highlight = 0
    crossfade = 0
    type = ltp8bit
    range = 0, noauto

    parameter = Control
    default = 0
    highlight = 0
    crossfade = 0
    type = ltp8bit
    range = 0, none, noauto
    range = 145, pt reset, noauto
    range = 185, zo reset, noauto
    range = 205, reset, noauto

    parameter = Red
    default = 65535
    highlight = 0
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Green
    default = 65535
    highlight = 0
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Blue
    default = 65535
    highlight = 0
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = White
    default = 0
    highlight = 0
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Colour
    default = 1
    highlight = 1
    crossfade = 0
    type = ltp8bit
    range = 0, none, noauto
    range = 1, 255, %

    parameter = Colorfx
    default = 0
    highlight = 0
    crossfade = 0
    type = ltp8bit
    range = o, none, noauto
    range = 1, 2700k, noauto
    range = 5, 3200k, noauto
    range = 8, 4200k, noauto
    range = 11, 5600k, noauto
    range = 16, 247, %
    range = 249, rainbow, noauto
    range = 250, 255, %

    parameter = Zoom
    default = 32768
    highlight = 32768
    crossfade = 0
    type = ltp16bit
    range = 0, 65535, %

    parameter = Strobe
    default = 255
    highlight = 255
    crossfade = 0
    type = ltp8bit
    range = 255, open, noauto
    range = 0, closed, noauto
    range = 128, 143, <
    range = 144, 159, >>pulse, noauto
    range = 192, 223, random, noauto

    parameter = Intensity
    default = 0
    highlight = 65535
    crossfade = 0
    type = htp16bit
    range = 0, 65535, %
Related