This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Problems to get DMX to work
#21
I solved it, the problem was number of channels set into script, my light has 6 channels
Reply
#22
How to run dmx random scene by using  event script
Reply
#23
Use random scene resident script from our examples. Set resident script name to DMX random scene
Make sure that only resident script has this name otherwise it won't work correctly.
Attach an event script to a binary object, it will enable resident script when value is true and disable it when value is false.
Code:
scriptname = 'DMX random scene'
value = event.getvalue()

if value then
  script.enable(scriptname)
else
  script.disable(scriptname)
end
Reply
#24
How to create sequencing of RGBW with infinite loop or any script for sequence
Reply
#25
See Predefined scene example:
https://openrb.com/example-dmx-lighting-...-with-lm2/

The example is for RGB, you need to add extra value to each scene item:
Code:
scenes = {
  { 255, 0, 0, 0 },
  { 0, 255, 0, 100 },
  { 0, 0, 255, 127 },
}
Reply


Forum Jump: