1.0.1 • Published 9 years ago

freestyler_node_connector v1.0.1

Weekly downloads
2
License
AGPLv3
Repository
github
Last release
9 years ago

#FreestylerNodeConnector NPM Version

Freestyler is free lighting control software used by many leading dj's, venues and lighting designers and supported by a vast network of users worldwide. http://www.freestylerdmx.be/

With Freestyler you are able to control lights with DMX-Interface.

This API is an interface for Freestyler to set DMX-Channels from Javascript.

var FreestylerConnector = require("freestyler_node_connector");
var api = new FreestylerConnector("localhost");
api.connect().then(function(){
	api.setDMX(100,5);// Sets channel 100 to value 5
	api.setDMXFromArray({
		"100":10,
		"30":20
	});// Set Channel 100 and 30 to value 10 and 20
}).done();

Known Errors For some reason Freestyler does not accept more than about a 100 values to be set at once.

1.0.1

9 years ago

1.0.0

9 years ago