hyperion-js-api

1.0.3 • Public • Published

💥 lightweight JavaScript interface for Hyperion

Install

npm version

npm install hyperion-js-api

Features

  • Control color and brightness of tv backlight.

  • Switch ambilight on/off. (optional)

  • Get current state/color

Basic Usage

const hyperion = new (require('hyperion-js-api'))("20.1.0.142",19444);
hyperion.setOn();
hyperion.getOn((error, response) => {
});
hyperion.setOff();
hyperion.setColor(hyperion.color.rgb(255, 0, 0));
hyperion.getColor((error, response) => {
});
hyperion.setBrightness(hyperion.color.value());
hyperion.getBrightness((error, response) => {
});
hyperion.setHue(hyperion.color.hue());
hyperion.getHue((error, response) => {
});
hyperion.setSaturation(hyperion.color.saturationv());
hyperion.getSaturation((error, response) => {
});

Tests

Find more examples in "test" directory.

Enter you hyperion server connection in package.json, and run some tests!

  "hyperion": {
    "host": "20.1.0.138",
    "port": "19444"
  }

run a single test from commandline with:

mocha test/hyperion.spec.js -g "setOff should switch off"

Package Sidebar

Install

npm i hyperion-js-api

Weekly Downloads

8

Version

1.0.3

License

ISC

Last publish

Collaborators

  • firsttris