pds
v1.0.1
Published
Node.js module to control a Barco PDS 902
Downloads
3
Readme
pds-902
Node.js module to control a Barco PDS 902.
Installation
$ npm install pds
Usage
var Pds = require('pds');
var switcher = new Pds({
host: '192.168.0.3' // switcher ip address
}).connect();
/**
* transition the bus on the switcher
*/
switcher.take();
/**
* preview input 2
*
* @param {Number} Input - the input number you would like to preview
*/
switcher.prev(2);