This HomeBridge Plugin adds support for the Hive Active Heating thermostat to be controlled in the Home app in iOS and via Siri.
This is a plugin for HomeBridge. In order to use this, you will need to install HomeBridge. You will need a computer which is always turned on. Personally, I use a Raspberry Pi but this may not be for the faint-hearted. Any Windows machine or Mac will do fine.
~/.homebridge/config.json
) using the sample file provided by HomeBridge.homebridge
commandRun this command (you don't need to download anything - you're using Node's package manager)
npm install -g homebridge-hive
In your config.json
file, add this accessory providing the username and password you use to log into https://my.hivehome.com
"accessories": [
{
"accessory": "HiveThermostat",
"name": "Hive Thermostat",
"username": "you@example.com",
"password": "123456789"
}
],
Then restart homebridge.
If you have multiple thermostats, you will need to do some additional setup. When you run HomeBridge, you will see an output similar to this...
[Hive Thermostat] Logged In
[Hive Thermostat] Fetching data from Hive API
[Hive Thermostat] Found thermostat xxxxx-xxxxxx-xxxxx-xxxxx. Current temperature is 19.56, set to 19
[Hive Thermostat] Found thermostat yyyyy-yyyyyy-yyyyy-yyyyy. Current temperature is 19.20, set to 19
For each thermostat, add an entry to your config.json file with an additional "id" parameter as it shows in that output. For example:
"accessories": [
{
"accessory": "HiveThermostat",
"name": "Upstairs Thermostat",
"username": "you@example.com",
"password": "123456789",
"id": "xxxxx-xxxxxx-xxxxx-xxxxx"
},
{
"accessory": "HiveThermostat",
"name": "Downstairs Thermostat",
"username": "you@example.com",
"password": "123456789",
"id": "yyyyy-yyyyyy-yyyyy-yyyyy"
}
],
Currently this plugin only supports the Hive Active Heating thermostat as this is the only Hive product I use myself although I regularly receive requests from people asking me to support other Hive products.
One person has sent me a Hive Active Plug, and so I am hoping to add support for it soon, however I have no plans to expand this plugin to other Hive products. If you desperately need HomeKit support for other Hive products, you are welcome to send me one of whatever product it is you want support for and I might get round to adding support for it (and will be happy to send it back to you after) but I make no promises I will get round to it any time soon.
I hope that Hive will add native HomeKit support soon making this Plugin no longer required (if anyone has any news about this please let me know).