mirror of
https://github.com/rainloreley/artnet-usbdmx-converter.git
synced 2024-11-22 02:13:02 +01:00
Adrian Baumgart 77e3b51758 | ||
---|---|---|
.github/workflows | ||
repo | ||
src | ||
.gitignore | ||
50-usbdmx.rules | ||
CODE_OF_CONDUCT.md | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json | ||
yarn-error.log | ||
yarn.lock |
ArtNet-USBDMX-Converter
Send incoming ArtNet signals to the FX5 DMX interface (and other compatible interfaces) to make it compatible with most DMX control programs.
Use case
This application opens an ArtNet receiver, to which various DMX control programs (e.g. ChamSys MagicQ) can send DMX signals to. It then forwards these signals to the FX5 USBDMX interface, and therefore opens it up to a variety of programs, not only the few that support it (QLC+, DMXControl).
Setup on Linux
To use USBDMX-Interfaces on Linux without root privileges you need to add a udev rule:
$ sudo cp 50-usbdmx.rules /etc/udev/rules.d/
# Unplug the interface, then run:
$ sudo udevadm control --reload-rules
If you're using another interface other than the ones listed below, you need to add them to the udev rule manually
# Get all usb devices and find your interface
$ lsusb
Bus 003 Device 021: ID 16c0:088b Van Ooijen Technische Informatica USB DMX
[...]
# First copy the existing udev rules-file like mentioned above, then edit:
$ sudo nano /etc/udev/rules.d/50-usbdmx.rules
# Duplicate the last line and change "idVendor" and "idProduct" to match the ID returned by lsusb
# In this example:
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="088b", MODE="0666"
Compatible interfaces
- Digital Enlightenment USB-DMX Interface
- FX5 DMX Interface (Frank Sievertsen)
- Nodle U1 (DMXControl e.V.)
- Nodle R4S (DMXControl e.V.)
- Technically any interface which uses the usbdmx driver by Frank Sievertsen
- Won't work out of the box, vendor ID and product ID need to be added manually
Develop & Build
Development
git clone https://github.com/rainloreley/artnet-usbdmx-converter.git
cd artnet-usbdmx-converter
yarn
yarn dev
Compiling
# edit package.json -> pkg to add more targets for various platforms
yarn make
License
This project is licensed under the MIT License - see the LICENSE file for details