1.0.1 • Published 9 years ago

pds v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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);