Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/maxjoehnk/node-udmx-artnet-bridge
- Owner: maxjoehnk
- Created: 2018-04-17T09:14:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:34:07.000Z (11 months ago)
- Last Synced: 2024-02-15T04:53:18.924Z (9 months ago)
- Topics: artnet, artnet-node, dmx, nodejs, udmx
- Language: TypeScript
- Homepage:
- Size: 38.1 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
}
}
```