Set up and control lights for your lair, parties, or any other occasion where you want to demonstrate your acumen and killer instinct.
This project uses common, cheap electronics to build your controller. Open source software is provided.
First, you'll want to solder three wires onto the XLR jack.
The following steps explain how to build the controller:
The controller is finished!
Connect any DMX lights you have to the XLR jack. Next up, programming.
In VS Code, select Open Folder and select the lair-lights-dmx folder you downloaded. PlatformIO will automatically setup the project with the needed libraries.
In the src/main.cpp
file, update the following lines:
const char* ssid = "";
const char* password = "";
In the top right corner of the file there is a menu, under which is the Upload option. Select it. This will start compiling and uploading the code to the ESP-32.
Next to the build menu, click the plug icon to open a serial monitor. This will connect to the ESP-32 and view its output. It should output its IP address. Take note of this.
(Example)
The controller is all ready to go. Last part: setting up the software for your lights.
Alternatively, you can also download a desktop app or build from source. Repo: https://github.com/camman3d/mad-power-struggle
The computer running the application must be connected to the same network as the ESP-32.
Each type of DMX light, or fixture, can have a different number of channels (sometimes also called slots or traits). Each channel corresponds to a different function. You will need to reference your light's manual to determine how to set it up.
For an example, let's say we have a light with four channels:
Channel | Function |
---|---|
1 | Dimmer (light brightness) |
2 | Red |
3 | Green |
4 | Blue |
A DMX value is in the range of 0-255. So we will set the Dimmer channel to full brightness by setting it to 255. Our light definition would look like this:
Under the Lights section, add the actual lights you have. Each DMX device is assigned an Address so make sure it is set correctly.