Logic Machine Forum
Problems to get DMX to work - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10)
+--- Thread: Problems to get DMX to work (/showthread.php?tid=2067)

Pages: 1 2


RE: Problems to get DMX to work - Dario - 11.02.2020

I solved it, the problem was number of channels set into script, my light has 6 channels


RE: Problems to get DMX to work - Rajesh - 18.03.2020

How to run dmx random scene by using  event script


RE: Problems to get DMX to work - admin - 18.03.2020

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



RE: Problems to get DMX to work - Rajesh - 06.05.2020

How to create sequencing of RGBW with infinite loop or any script for sequence


RE: Problems to get DMX to work - admin - 10.05.2020

See Predefined scene example:
https://openrb.com/example-dmx-lighting-control-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 },
}