1.3.0 • Published 3 years ago

@theatrixx/xpresscue-connect v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

xPressCue Connect

A simple library for interacting with the Theatrixx xPressCue in Node.JS. Written in TypeScript.

Installation

npm i @theatrixx/xpresscue-connect

Usage

Always start by instantiating the base Player class. One Player class represents one physical xPressCue device.

import { Player } from '@theatrixx/xpresscue-connect';

const player = new Player();

// Connect to the device
player.connect('192.168.2.21').then(() => {

  // Execute actions once connected.
  player.identify();
  player.stop();
});

Refer to the inline documentation for further information on all the methods available on the Player class.

1.2.0

3 years ago

1.3.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.1.2

3 years ago