Questions tagged [dmx512]

DMX512 (Digital MultipleX) is a standard for digital communication networks that are commonly used to control stage lighting and effects

DMX512 (Digital MultipleX) is a standard for digital communication networks that are commonly used to control stage lighting and effects. It was originally intended as a standardized method for controlling light dimmers, which, prior to DMX512, had employed various incompatible proprietary protocols.

DMX512 does not include automatic error checking and correction, and so is not an appropriate control for hazardous applications, such as pyrotechnics or movement of theatrical rigging.

http://en.wikipedia.org/wiki/DMX512

54 questions
0
votes
2 answers

One Variable doesn't have the same Value in my two Processes

I have a Python script using the multiprocessing and sacn library: from multiprocessing import Process import time import sacn def GettingDMXValues(): while True: receiver = sacn.sACNreceiver(bind_address = "***.**.**.**") …
0
votes
0 answers

Why am I getting 'INVALID DMP VECTOR' error when sending E1.31 commands via PHP but not with QLC+ software?

im new to E1.31 or sACN. I am trying to send a command to an E1.31 receiver that was created with an ESP8266 with Arduino from a PHP service. However, I keep encountering an error message: "INVALID DMP VECTOR: 0x0". this error is given by the ESP…
0
votes
1 answer

How to set channel value with PyDMXControl?

I have a DMX512 decoder with LEDs at address 1. It is connected to the PC running Ubuntu 22.04.2 via USB/RS485 dongle using FT232R chip. It works fine with QLC+ app. I would like to control it from a Python script. I'm using PyDMXControl module and…
Paul Jurczak
  • 7,008
  • 3
  • 47
  • 72
0
votes
1 answer

DMX-values using sine and cosine. From 8bit (1 channel) to 16bit (two channels)

I’m (still) working on a small project controlling DMX-lights (using Art-Net). At the moment I’m working on the “Movement-generator” and what I basically do is to use sine and cosine to calculate the DMX values (0-255) for the pan- and tilt-channel,…
droid
  • 103
  • 1
  • 15
0
votes
1 answer

In Java: How to make a DMX moving generator that uses 16Bit

I working one a small Java project controlling a DMX-light, a “moving head”. So far, I can control the moving head using Art-Net, doing the most simple stuff – like setting a value for a channel. Now I’m working on moving the moving head. The moving…
droid
  • 103
  • 1
  • 15
0
votes
1 answer

How to send UDP/art-net command to LANBOX LCX in the same network?

I have a LANBOX LCX device which is used for lighting up a few dimmable bulbs which are connected via DMX cables. I have read the documentation and tried to find ways to send UDP, but as I am a newbie in lighting and DMX world, it is so hard to…
0
votes
0 answers

DMX (Slave) with ESP32-C3-DevKitM-1 (Searching for advise)

I am currently working on a project where I want to integrate an ESP32-C3-DevKitM-1 into a DMX bus. Unfortunately I am not very familiar with microcontrollers, ESP32 and DMX. At least it is my first project in this direction. I have looked through…
WackyWollie
  • 7
  • 1
  • 4
0
votes
0 answers

I am trying to build a music visualizer but I am completely inexperienced

Where should I begin? I am trying to build a real-time stem-split music visualizer for VJing and the like. What sets this apart is that I would like to split the input audio stream into its stems (either algorithmically or using something like…
NobelJ
  • 1
0
votes
1 answer

Minibrick8 doesnt connect to computer via RS-232 serial cable when there is a Snap-action-switch (microswitch) attatched

I am using a MiniBrick8 (from Gilderfluke & Company in Burbank, California), as part of a lighting/ projector rig. The MiniBrick8 needs an input from a button (using a switch) to start a program running (PCMacs). At the moment the MiniBrick8 is also…
Jamie
  • 29
  • 6
0
votes
1 answer

unable to open a connection with a FTD 232 device

I am trying to open a connection and pass a value for a given channel In order to do this I need to open a connection to the enttec open dmx usb. But I am unable to create a connection I tried to list devices and make sure the SN matches with the…
Raj Josyula
  • 140
  • 1
  • 12
0
votes
2 answers

DMX-Interface to use to write your own DMX-Control-Software

I have a very specific problem: I want to write my own DMX-Software to control our DMX-fixtures. Does anyone know a interface to use? It would be great if there would be any Framework for using it, so that I only have to sent the channel and the…
Lars Petersen
  • 602
  • 9
  • 21
0
votes
1 answer

Read 8n2 serial with 88us break and 2 bit MAB (250000 baud) (DMX512) from ESP8266

How do i configure the serial port on a ESP8266 to accept DMX? I have found some arduino libraries that does this, but they require a 16MHz processor (the ESP-8266 will be run at 80 or 160MHz)
Pownyan
  • 475
  • 1
  • 6
  • 23
0
votes
2 answers

Using libusb-win32 to communicate with USB to DMX512 interface, can't find any endpoints

I am trying to send raw data to a set lights from my computer through a USB to DMX512 interface using libusb-win32. So far everything seems to be working well, except for some reason the program doesn't recognize any endpoints on the adapter. Here…
0
votes
1 answer

Sending and receiving DMX-512 using DMXSerial Arduino Library

I currently am working with the DMXSerial library written for arduino. This library can be used, depending on how it is initialised as a transmitter, or as a sender. The transmitter should be initialised as…
Alex van Rijs
  • 803
  • 5
  • 17
  • 39
0
votes
3 answers

RGB to RGB plus AMBER

I want to control DMX light from a higher system. I receive only RGB values 0-255. DMX light have RED, GREEN, BLUE and AMBER light (0-255). How can i convert RGB to RGB + Amber? I tried manually adjust the light, but the conversion table is not an…
niktoss
  • 51
  • 4