Skip to content

Commit ee6bb09

Browse files
Rendilifrenck
authored andcommitted
Documentation for new Hive Platform / Components (home-assistant#3577)
* Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive platform / components * Documentation for Hive Component / Platforms * Documentation for Hive Component / Platforms * Documenation for Hive Component / Platforms * Document for Hive Component / Platforms * Documentation for Hive Component / Platforms * Documentation for Hive Component / Platforms
1 parent 7b38ab2 commit ee6bb09

File tree

7 files changed

+190
-0
lines changed

7 files changed

+190
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: "Hive Sensor"
4+
description: "Instructions on how to integrate Hive Sensors with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Binary Sensor
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The 'hive' binary sensor component integrates your Hive sensors into Home Assistant.
18+
19+
The Hive sensor component supports the following Hive products:
20+
- **Hive Window or Door Sensor**
21+
- **Hive Motion Sensor**
22+
23+
24+
<p class='note'>
25+
Full configuration details can be found on the main [Hive component](/components/hive/) page.
26+
</p>
27+
28+
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: page
3+
title: "Hive Thermostat"
4+
description: "Instructions on how to integrate Hive thermostat(s) with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Climate
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The 'hive' climate component integrates your Hive thermostat and hot water into Home Assistant, enabling control of setting the **mode** and setting the **target temperature**.
18+
19+
The Hive climate component supports the following Hive products:
20+
- **Hive Active Heating**
21+
- **Hive Multizone**
22+
- **Hot water control**
23+
24+
25+
<p class='note'>
26+
Full configuration details can be found on the main [Hive component](/components/hive/) page.
27+
</p>
28+
29+

source/_components/hive.markdown

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: page
3+
title: "Hive"
4+
description: "Instructions on how to integrate Hive devices with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Hub
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
This Hive component is the main component to set up and integrate all supported Hive devices. Once configured with the minimum required details it will detect and add all your Hive devices into Home Assistant, including support for multizone heating.
18+
19+
This component uses the unofficial API used in the official Hive website [https://my.hivehome.com](https://my.hivehome.com), and you will need to use the same Username and Password you use on the Hive website to configure this Hive component in Home Assistant.
20+
21+
To add your Hive devices into your Home Assistant installation, using the default scan_interval, add the following to your 'configuration.yaml' file:
22+
23+
```yaml
24+
# Example configuration.yaml entry
25+
hive:
26+
username: YOUR_USERNAME
27+
password: YOUR_PASSWORD
28+
```
29+
30+
{% configuration %}
31+
username:
32+
description: Your username from [https://my.hivehome.com](https://my.hivehome.com).
33+
required: true
34+
type: string
35+
password:
36+
description: Your password from [https://my.hivehome.com](https://my.hivehome.com).
37+
required: true
38+
type: string
39+
scan_interval:
40+
description: The time in minutes between Hive API calls
41+
required: false
42+
type: int
43+
default: 2
44+
{% endconfiguration %}
45+
46+
47+
The Hive Home Assistant platform currently supports the following Hive devices:
48+
49+
- Hive Active Heating (including hot water and Hive Multizone)
50+
- Hive Active Light Dimmable
51+
- Hive Active Light Cool to Warm White
52+
- Hive Active Plug
53+
- Hive Window or Door Sensor
54+
- Hive Motion Sensor
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: "Hive Light"
4+
description: "Instructions on how to integrate Hive lights with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Light
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The 'hive' light component integrates your Hive lights into Home Assistant, enabling control of various settings, depending on the model light.
18+
19+
The Hive light component supports the following Hive products:
20+
- **Hive Active Light Dimmable**
21+
- **Hive Active Light Cool to Warm White**
22+
23+
24+
<p class='note'>
25+
Full configuration details can be found on the main [Hive component](/components/hive/) page.
26+
</p>
27+
28+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: page
3+
title: "Hive Sensor"
4+
description: "Instructions on how to integrate Hive Sensors with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Sensor
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The 'hive' sensor component can expose as a sensor the current online status of your Hive Hub.
18+
19+
20+
<p class='note'>
21+
Full configuration details can be found on the main [Hive component](/components/hive/) page.
22+
</p>
23+
24+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: page
3+
title: "Hive Switch"
4+
description: "Instructions on how to integrate Hive Plugs with Home Assistant."
5+
date: 2017-09-24 21:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: hive.png
11+
ha_category: Switch
12+
ha_release: 0.59
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The 'hive' switch component integrates your Hive plugs into Home Assistant, enabling control of your devices.
18+
19+
The Hive switch component supports the following Hive products:
20+
- **Hive Active Plug**
21+
22+
23+
<p class='note'>
24+
Full configuration details can be found on the main [Hive component](/components/hive/) page.
25+
</p>
26+
27+
94.3 KB
Loading

0 commit comments

Comments
 (0)