Skip to content

A Javascript library to interact with a uDMX-based USB DMX controller

License

Notifications You must be signed in to change notification settings

thefinn93/udmx.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uDMX.js

A library to interact with uDMX dongles

Sample usage:

#!/usr/bin/env nodejs

var uDMX = require('udmx');

var dmx = new uDMX();

dmx.on('channel-all', (channel, value) => {console.log(channel + ' => ' + value);});
dmx.on('connected', () => {console.log('Connected');});

dmx.connect();

setInterval(() => {dmx.set(Math.round(Math.random() * 512), Math.round(Math.random() * 255));}, 1000);

About

A Javascript library to interact with a uDMX-based USB DMX controller

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published