1.0.1 • Published 10 years ago
pds v1.0.1
pds-902
Node.js module to control a Barco PDS 902.
Installation
$ npm install pdsUsage
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);