0.0.1 • Published 7 years ago

sony-audio v0.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

CircleCI

#Sony-Audio API

This API allows you to connect and send remote control commands to the following Sony devices:

  • SRS-ZR5
  • STR-DN1080
  • HT-MT500
  • HT-CT800
  • HT-ST5000
  • HT-ZF9

##Setup

From the device or using Bonjour you can discover the IP address of your audio device, then the following code will allow you to setup a remote control object;

const remoteFor = require('sony-audio');
const ampRemote = await remoteFor('http://<ip-address>:<port>');

Now your remote control object is initialised and ready to execute commands:

await ampRemote.turnOn();
await ampRemote.turnOff();