npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@alisowski/homebridge-sony-audio-control-just-volume-with-max

v0.2.5

Published

Homebridge plugin to control a Sony STR-DN1080 AV-receiver

Downloads

13

Readme

"homebridge-sony-audio-control" Plugin

With this plugin you can create HomeKit services to control a Sony STR-DN1080 Audio Video Receiver.

The code for this plugin has originally been forked from Http Speaker for Homebridge authored by Andreas Bauer.

Compatibility notice

This plugin utilizes Sony's Audio Control API. It has only been tested with a Sony STR-DN1080 Audio Video Receiver, but it may work with other Sony devices that support the API.

The plugin supports powertoggling, volume control including muting, setting sound modes stereo and Dolby Surround and switching configured external inputs.

The plugin doesn't support auto discovery using UPNP. This is by design as the receiver stops responding on port 52323 after being put in standby once (at least that is the case with the european version per firmware version M41.R.0442), which is necessary to support auto discovery.

Installation

First of all you should already have installed Homebridge on your device. Follow the instructions over at the HomeBridge Repo.

To install the homebridge-sony-audio-control plugin simply run sudo npm install -g homebridge-sony-audio-control.

Configuration

Below is an example configuration that has to amended to your existing Homebridge-configuration.

You have to edit "ip" to correspond with the IP-address of your receiver.

Set "name" to what you prefer to refer to the device as using Homekit or Siri.

"accessory" is used by homebridge to initialize the plugin correctly, so do NOT edit this setting.

For every external input you want to enable, you have to add a new input object with a "name" and "uri". Again "name" can be set to what you prefer to refer to the input as using Homekit or Siri, while "uri" have to correspond to the Device Resource URI per Device URI.

"accessories": [
    {
        "accessory": "receiver",
        "name": "Receiver",
        "ip": "10.0.0.138",
        "inputs": [
          {
            "name": "Apple TV",
            "uri": "extInput:video?port=2"
          },
          {
            "name": "TV",
            "uri": "extInput:sat-catv"
          },
          {
            "name": "Blu-ray",
            "uri": "extInput:bd-dvd"
          },
          {
            "name": "Xbox One",
            "uri": "extInput:game"
          },
          {
            "name": "Bluesound",
            "uri": "extInput:tv"
          },
          {
            "name": "Vinyl",
            "uri": "extInput:sacd-cd"
          }
        ]
    }
]