Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxjoehnk/node-udmx-artnet-bridge

A Node.JS based bridge from uDMX to an Artnet Universe.
https://github.com/maxjoehnk/node-udmx-artnet-bridge

artnet artnet-node dmx nodejs udmx

Last synced: 20 days ago
JSON representation

A Node.JS based bridge from uDMX to an Artnet Universe.

Awesome Lists containing this project

README

        

# uDMX Artnet Bridge
[![Build Status](https://travis-ci.org/maxjoehnk/node-udmx-artnet-bridge.svg?branch=master)](https://travis-ci.org/maxjoehnk/node-udmx-artnet-bridge)

A Node.JS based bridge from uDMX to an Artnet Universe.

# Usage
```bash
npm i -g udmx-artnet-bridge
udmx-artnet-bridge
```

# Configuration
You can configure udmx-artnet-bridge with a toml, yaml or json file.
Just specify the path via the `--config` flag.

```javascript
{
timeout: 1000, // specifies the interval in which we try to connect to the udmx device
udmx: {
vendorId: 0x16c0,
deviceId: 0x5dc
},
artnet: {
port: 6454,
universe: 0
}
}
```