Skip to content

Xapphire13/node-soundtouch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm npm

node-soundtouch

node-soundtouch is a Node.js library that implements the Bose SoundTouch API.

It is currently in an alpha state and only implements as much of the API as I currently need. Eventually though the intent is to support the full API.

This library is authored in TypeScript and compiled into ES6. It uses ES6 promises and can be used with async/await or promise chaining.

Installation

npm install --save node-soundtouch

This package includes TypeScript typings that should be automatically detected.

Usage

Below is an example in ES6/TypeScript

import {DiscoveryService, Key} from "node-soundtouch";

const device = await DiscoveryService.findDevice("My Device");

if (device) {
  await device.setVolume(30);
  await device.pressKey(Key.ShuffleOn);
  await device.powerOn();
  await device.pressKey(Key.Preset1);
}

Contributing

Contributions are welcome, though I do have a vision of how I want this project to reach v1.0 so feel free to open an issue before creating a pull request to see if we're on the same page.

About

Bose Soundtouch API for node.js

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published