Zeevonk
A modular lighting control system for modern DMX-based lighting setups.
⚠️ Warning
Zeevonk is currently in early development. APIs, features, and behavior may change frequently and without notice. It is not yet recommended for production use.
What is Zeevonk?
Zeevonk is a modular system for controlling lighting fixtures. It consists of a server and two types of clients:
- Server: Manages clients, processes triggers and attribute updates, and sends DMX data.
- Processor Client: Calculates and sends fixture attribute values (like color, position, intensity) to the server.
- Controller Client: Sends triggers (such as button presses or fader moves) to the server.
Some notable controllers:
- zv-ctrl-bmdse: A Black Magic Design Speed Editor controller client based on bmdse.
Run the Zeevonk server
You can install zeevonk as a binary (called zv) using the following command:
Use as a library
Features
The crate has three main features you can enable:
server: Start and configure the server from your own code instead of the CLI.
client-processor: Use the processor client.
client-controller: Use the controller client.
Example: Starting the Server
use Server;
use ProjectDefinition;
// Create a project definition.
let project_def = default;
// Create and start the server.
let server = new.unwrap;
server.start;
Example: Processor Client
use Attribute;
use Client;
use Identifier;
use ;
use AttributeValues;
async
Example: Controller Client
use Client;
use Identifier;
use ;
async
For more details, see the documentation for each module in the crate.