1.0.1 • Published 6 years ago

barco-projector v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

npm version Downloads Dependency Status Build Status MIT license GitHub issues GitHub forks GitHub stars

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

Author

William Viker <william.viker@gmail.com>

Changelog

  • 1.0.0 Initial beta
  • 1.0.1 Fix broken links in README
1.0.1

6 years ago

1.0.0

6 years ago