barco-projector
v1.0.1
Published
Unofficial Node.js API for Barco UDX/HDF/HDX/HDQ projectors
Downloads
14
Readme
Features
Get temperatures, fan speeds and voltages from Barco Projectors. (Tested with HDX W20)
Getting Started
npm install barco-projector
Example usage:
var Projector = require('barco-projector');
var pj = new Projector();
pj.on('connect', function(ip) {
console.log("connected to",ip);
});
pj.on('disconnect', function() {
console.log('disconnected from projector');
pj.reconnect(); // try reconnecting
});
pj.connect('10.20.34.46');
pj.request('temperatures', function(err, res) {
if (!err) {
console.log("current temperatures: ", res);
}
});
Git
- https://github.com/willosof/barco-projector
[email protected]:willosof/node-barco-projector.git
Author
William Viker <[email protected]>
Changelog
- 1.0.0 Initial beta
- 1.0.1 Fix broken links in README