Skip to content

materik/homebridge-harmonyhub-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

homebridge-harmonyhub-plugin

Project Status: Unsupported – The project has reached a stable, usable state but the author(s) have ceased all work on it. A new maintainer may be desired.

Features

  • Makes all your HarmonyHub activities available in HomeKit
  • Solves the issue with the HarmonyHub connection dying after a while due to MAX_CLIENTS=6
  • Supports the HarmonyHub firmware 250 update
  • Currently relies on WebSockets and not XMPP

Install

npm install -g homebridge-harmonyhub-plugin

Configuration

Add this to your Homebridge config.json file:

"platforms": [
    {
        "platform": "HarmonyHub",
        "name": "homebridge-harmonyhub-plugin",

        // Optional
        "config": {

            // Pass options to the HarmonyHub explorer function
            "explorer": {
                "options": {
                    "address": "255.255.255.255"
                    // ...
                }
            }
        }
    }
]