All Projects → lowlander → dmx_usb_module

lowlander / dmx_usb_module

Licence: GPL-2.0 license
Linux kernel module for Enttec Open DMX dongle

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to dmx usb module

open-fixture-library
A library and website for lighting technology's DMX fixture definition files.
Stars: ✭ 113 (+213.89%)
Mutual labels:  dmx, dmx512
dmxnet
ArtNet-DMX-sender and receiver for nodejs
Stars: ✭ 43 (+19.44%)
Mutual labels:  dmx, dmx512
TeensyDMX
A full-featured DMX library for Teensy 3, Teensy LC, and Teensy 4. "Programmable DMX and arbitrary USB serial device emulation."
Stars: ✭ 82 (+127.78%)
Mutual labels:  dmx, dmx512
sacnview
sACNView provides a tool for monitoring and sending the Streaming ACN lighting control protocol used for lighting control in theatres, TV studios and architectural systems
Stars: ✭ 75 (+108.33%)
Mutual labels:  dmx512
BlenderDMX
Blender addon to design and render DMX lighting.
Stars: ✭ 67 (+86.11%)
Mutual labels:  dmx
h3dmx512-zip
Images for Allwinner H2+/H3 DMX512 / RDM / Art-Net / sACN / USBPro / Pixel / WS28xx / TCNet / SMPTE
Stars: ✭ 57 (+58.33%)
Mutual labels:  dmx512
Pico-DMX
A library for inputting and outputting the DMX512-A lighting control protocol from a Raspberry Pi Pico
Stars: ✭ 59 (+63.89%)
Mutual labels:  dmx
OpenDeck
Software and hardware platform for simpler building of MIDI controllers with support for DMX.
Stars: ✭ 438 (+1116.67%)
Mutual labels:  dmx
mqtt-dmx-controller
A simple ArtNet / DMX Controller with MQTT Interface 💡🎬
Stars: ✭ 48 (+33.33%)
Mutual labels:  dmx512
dmx
Go DMX controller with ArtNet discovery + Angular Web UI with WebSockets
Stars: ✭ 24 (-33.33%)
Mutual labels:  dmx
ESPAsyncE131
Asynchronous E1.31 (sACN) library for Arduino ESP8266 and ESP32
Stars: ✭ 97 (+169.44%)
Mutual labels:  dmx
ledcat
Control lots of LED's over lots of protocols
Stars: ✭ 89 (+147.22%)
Mutual labels:  dmx
ja-rule
Ja Rule is the code behind OLE, an Open Source DMX/RDM framework for PIC32 microcontrollers
Stars: ✭ 36 (+0%)
Mutual labels:  dmx
sparklemotion
Sparkle Motion
Stars: ✭ 24 (-33.33%)
Mutual labels:  dmx
DMXOPL
YMF262-enhanced FM patch set for Doom and source ports.
Stars: ✭ 42 (+16.67%)
Mutual labels:  dmx
ArtNode
Art-Net library for Arduino, Teensy, etc.
Stars: ✭ 27 (-25%)
Mutual labels:  dmx

DMX USB Driver

The DMX USB driver is a Linux 4.X kernel driver for the Enttec DMX USB dongle ( http://www.enttec.com/dmxusb.php )

Building the driver

Before the driver can be build, the kernel sourcecode needs to be installed. To build the driver just call make, this should build a dmx_usb.ko (the kernel module) and a dmx_usb_test (a small test program).

Building on a RPi4 running Raspbian

First update your RPi with the following commands;

apt-get update -y
apt-get upgrade -y

After that you might want to reboot to make sure you are running the maybe updated kernel.

Than get the kernel source code;

# Get rpi-source
sudo wget https://raw.githubusercontent.com/notro/rpi-source/master/rpi-source -O /usr/bin/rpi-source

# Make it executable
sudo chmod +x /usr/bin/rpi-source

# Tell the update mechanism that this is the latest version of the script
/usr/bin/rpi-source -q --tag-update

# Get the kernel files thingies.
rpi-source

Now you should be ready to build the DMX USB module.

Problems loading the right driver.

A "small" problem to solve was to make the kernel clear that it should use my driver for the dongle and not the standard usbserial driver. Since I don't have any other USBserial devices with the samechip type I just removed the ftdi_sio.ko module, and changed the /etc/hotplug/usb.distmap to point to my module. To support both the ftdi_sio.o module and the dmx_usb.o module the ftdi_sio.o module should be patched and the Product ID for the FT232BM should be removed from it, this will mean all other serial-usb devices are still supported just not the one with FT232BM chips, since it isn't possible to differentiate DMX-USB and normal-serial versions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].