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

homebridge-bravia-tv

v3.0.1

Published

homebridge-bravia-tv

Downloads

10

Readme

homebridge-bravia-tv v3

npm npm GitHub last commit

Homebridge dynamic platform plugin for Sony Bravia Android TVs

Note: If you are looking for the non dynamic version, install the old version! homebridge-sonybravia-platform v2

This is a dynamic platform plugin for Homebridge to control your Sony Bravia Android TV.

This plugin supports following functions:

  • Switch for Power (on/off)
  • Switch for the Inputs like HDMI, Scart, CEC Devices, AV, WIFI mirroring etc.
  • Switch for Apps
  • Switch for Channels
  • Bulb for controlling the Volume
  • Service for a few remote control commands

Why do we need this plugin and whats the difference?

It's the only plugin that exposes nearly all TV functionalities to HomeKit. All created switches has own characteristics which can be accessed in 3rd party apps like Elgato EVE. It has a built in 'settings' characteristics to adjust the plugin parameter whithin an app! It supports the latest homebridge API and has dynamic platform functionality. It can auto detect new apps (channels coming soon) and add them to HomeKit or remove them. It has cache functionality to cache the TV API in your persist folder (to avoid heavy polling). You have the full functionality about the plugin, you can enable/disable all switches/services/bulbs from your config.json file. And many more functions coming soon!

See Images for more details.

Installation instructions

After Homebridge has been installed:

  • sudo npm install -g homebridge-bravia-tv

Preparing the TV

  • Set Remote start to ON (Settings -> Network -> Remote Start)
  • Change Authentication to Normal and Pre-Shared Key (Settings -> Network -> IP Control -> Authentication)
  • Enter a Pre-Shared Key (Settings -> Network -> IP control -> Pre-Shared Key)

Basic configuration

{
"bridge": {
  ...
},
"accessories": [
  ...
],
"platforms": [
   {
     "platform": "BraviaTV",
     "name": "TV",
     "ipadress": "192.168.1.1",
     "psk": "YourPSKhere",
   }
]
}

Advanced Configuration

{
"bridge": {
  ...
},
"accessories": [
  ...
],
"platforms": [
   {
     "platform": "BraviaTV",
     "name": "TV",
     "ipadress": "192.168.1.1",
     "port": 80,
     "psk": "YourPSKhere",
     "tvEnabled": true,
     "volumeEnabled": true,
     "inputsEnabled": true,
     "detectCEC": true,
     "extraInputs": false,
     "appsEnabled": true,
     "channelsEnabled": false,
     "remoteControl": false
   }
]
}

Options

| Attributes | Required | Usage | |------------|----------|-------| | name | Yes | Unique Name for the Platform. | | ipadress | Yes | IP adress from your Sony Bravia Android TV | | port | No | If you have problems with connecting to the TV, try a different port (Default: 80) | | psk | Yes | Your PRE SHARED KEY (see preparing the TV above) | | tvEnabled | No | Exposes new switch accessory to HomeKit for switching tv on/off with settings characteristics | | inputsEnabled | No | Exposes new switch accessory for HDMI inputs to HomeKit (Default: true) | | extraInputs | No | Adds extra sources like scart, composite and display mirroring as characteristics to the Input switch (see inputsEnabled) (Default: false) | | detectCEC | No | Adds connected CEC devices as new characteristics to the Input Switch and remove 'old' HDMI inputs instead (Default: true) | | volumeEnabled | No | Exposes bulb accessory to HomeKit to control TV volume (Default: true) | | appsEnabled | No | Exposes new switch accessory for installed apps to HomeKit (Default: true) | | channelsEnabled | No | Exposes new switch accessory for all channels to HomeKit (Default: false) | | remoteControl | No | Exposes remote control to HomeKit (Default: false) |

In App settings

There are more settings available within the app to customize the plugin for your own whishes (this has the advantage that you do not have to restart homebridge every time you make changes, see gif)

  • Channel Source: Defines the source of your channels (DVBT, DVBC coming soon)

  • Favourite App: One of the installed apps on the TV, needed for the 'main' apps switch and for Off State

  • Favourite Channel: One of the channels on the TV, needed for the 'main' channels switch and for Off State

  • Favourite Input: One of the detected inputs on the TV, needed for the 'main' inputs switch and for Off State

  • Max Volume: Defines the max adjustable volume via the bulb accessory

  • Off State: Defines the 'off' mode (HOME; CHANNEL; OFF) by i.e. switching the input, app or channel switch off

  • Polling Interval: Defines the time of polling the TV

Supported clients

This plugin has been verified to work with the following apps on iOS 11.3:

  • Apple Home (partial)
  • All 3rd party apps like Elgato Eve etc. (recommended)

Known issues | TODO

  • ISSUE: At the moment it is not possible to deactivate a CEC device or shutting it down, this plugin activates the option setted in the settings instead (Off State > "HOME" for favourite app, "CHANNEL" for favourite channel and "OFF" for turning the TV off by switching Input switch off)

Contributing

You can contribute to this homebridge plugin in following ways:

Pull requests are accepted.