Node.js interface for Enttec Open DMX USB (and compatible) dongles
This library lets you control DMX512 devices via the Enttec OpenDMX (or compatible) USB dongle.
To use this library you need to install the OpenDMX device driver first. Additional installation instructions can be found here and here.
Use NPM to install the library using:
npm install --save node-opendmx
Create the OpenDMX controller interface:
let dmx = new OpenDMX();
Create a DMX device. In this example a simple RGB light (3 channels) is created. Pull requests for additional devices are welcome!
let light = new Devices.LEDRGB();
Add the device to the collection of devices along with a starting channel. Since the RGB light uses 3 channels, the channels 1-3 in this DMX universe are now occupied.
dmx.addDevice(light, 1);
Change the light to red color (just for example)
light.red();
Render the DMX universe
dmx.render();
Your LED light should now switch to red color.
light.off();
dmx.render();
Your LED light should now be switched off.
Instructions below are for Debian / Ubuntu or Raspbian distributions.
Make sure you have the necessary build tools installed.
sudo apt install git bc bison flex libssl-dev make
Most likely you did not blacklist the default serial driver. Check the section “Blacklist the other serial drivers” in the installation tutorial.
If for some reason blacklisting the serial driver doesn’t work you can remove it from your system entirely using these steps:
uname -a
ftdi_sio.ko
from /lib/modules/<your_architecture>/kernel/drivers/usb/serial
to a location where the system can’t find it.dmx_usb.ko
to the folder abovesudo depmod
The file /lib/modules/<your_architecture>/modules.alias
should now contain some new entries similar to this:
alias usb:v0403p6006d[1-9]*dc*dsc*dp*ic*isc*ip*in* dmx_usb
alias usb:v0403p6006d0[4-9]*dc*dsc*dp*ic*isc*ip*in* dmx_usb
alias usb:v0403p6001d[1-9]*dc*dsc*dp*ic*isc*ip*in* dmx_usb
alias usb:v0403p6001d0[4-9]*dc*dsc*dp*ic*isc*ip*in* dmx_usb
You need to create a udev
rule to automatically change device permissions once you plug in the dongle:
lsusb
. You will find both IDs as ID <vendor ID>:<device ID>
in the output. If for example your output reads: Bus 001 Device 005: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC
then 0403
is the vendor ID and 6001
is the device ID./etc/udev/rules.d
create a new file and name it 50-dmx.rules
. Add the following content to the file:
ATTRS{idVendor}=="<vendor ID>", ATTRS{idProduct}=="<device ID>", SUBSYSTEMS=="usb", ACTION=="add", MODE="0660", GROUP="plugdev"
Replace <vendor ID>
and <device ID>
with the values you found above. You can also adjust the GROUP
value to match your requirements. Afterwards reboot your system, plug in the USB controller and it should have the requested permissions.