Hey guys,
I am a total noob at this but am committed to figuring it out and making Homebridge work for my needs. I am having a problem understanding a full step by step of adding a plug in from the npm site. I really need to get my Harmony Hub activities into the HomeKit universe so that I can tie in my Wemo switches. I found this plug in: https://github.com/kraigm/homebridge-harmonyhub
According to their instructions I added this to the file in my home assistant add-on:
{
"log_level": "info",
"avahi_interfaces": "",
"avahi_hostname": "",
"avahi_domainname": "local",
"enable_ipv6": true,
"packages": [],
"init_commands": [],
"plugins": [
"homebridge-harmonyhub"
]
}
Then I went in to the config.json file and added this:
{
"bridge": {
"name": "Home Assistant",
"username": "B8:27:EB:11:98:36”,
"port": 51826,
"pin": "949-33-316"
},
"description": "Homebridge for Home Assistant",
"accessories": [],
"platforms": [
{
"platform": "HomeAssistant",
"name": "HomeAssistant",
"host": "http://hassio/homeassistant",
"password": "",
"default_visibility": "visible",
"supported_types": [
"automation",
"binary_sensor",
"climate",
"cover",
"device_tracker",
"fan",
"group",
"input_boolean",
"light",
"lock",
"media_player",
"remote",
"scene",
"script",
"sensor",
"switch",
"vacuum"
],
"logging": true,
"verify_ssl": true
}
]
}
{
"name": "homebridge-harmonyhub",
"description": "Logitech Harmony Hub plugin for HomeBridge",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "git://github.com/kraigm/homebridge-harmonyhub.git"
},
"license": "ISC",
"preferGlobal": true,
"keywords": [
"homebridge-plugin"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.3.1"
},
"dependencies": {
"bluebird": "^3.3.4",
"debug": "^2.2.0",
"harmonyhubjs-client": "^1.1.6",
"harmonyhubjs-discover": "^1.0.2",
"inherits": "^2.0.1",
"queue": "^3.1.0",
"lodash": "^4.6"
}
}
But it isn’t working and now the Homebridge add-on requires me to start it every 5 minutes and isn’t discoverable in HomeKit.
I’m sorry but I just can’t figure out where a good tutorial is for this and I’ve been looking for like 20 straight hours!
Thanks in advance