Skip to content

Commit c0e9792

Browse files
committed
Merge branch 'current' into next
2 parents 1f91ee0 + 29be464 commit c0e9792

12 files changed

+197
-255
lines changed

source/_components/binary_sensor.bloomsky.markdown

Lines changed: 0 additions & 43 deletions
This file was deleted.

source/_components/binary_sensor.linode.markdown

Lines changed: 0 additions & 35 deletions
This file was deleted.

source/_components/bloomsky.markdown

Lines changed: 102 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,24 @@ comments: false
88
sharing: true
99
footer: true
1010
logo: bloomsky.png
11-
ha_category: Environment
11+
ha_category:
12+
- Environment
13+
- Binary Sensor
14+
- Camera
15+
- Sensor
1216
ha_release: 0.14
1317
ha_iot_class: "Cloud Polling"
18+
redirect_from:
19+
- /components/binary_sensor.bloomsky/
1420
---
1521

16-
The `bloomsky` component allows you to access your [BloomSky](https://www.bloomsky.com/) weather station's [sensors](/components/sensor.bloomsky), [binary sensors](/components/binary_sensor.bloomsky), and [camera](/components/camera.bloomsky) from Home Assistant.
22+
The `bloomsky` component allows you to access your [BloomSky](https://www.bloomsky.com/) weather station's.
23+
24+
There is currently support for the following device types within Home Assistant:
25+
26+
- [Binary Sensor](#binary-sensor)
27+
- [Camera](#camera)
28+
- [Sensor](#sensor)
1729

1830
## {% linkable_title Setup %}
1931

@@ -35,3 +47,91 @@ api_key:
3547
required: true
3648
type: string
3749
{% endconfiguration %}
50+
51+
## {% linkable_title Binary Sensor %}
52+
53+
The `bloomsky` binary sensor platform allows you to get data from your BloomSky device.
54+
55+
To get your BloomSky binary sensors working with Home Assistant, follow the instructions above first.
56+
57+
### {% linkable_title Configuration %}
58+
59+
To use your BloomSky binary sensor in your installation, add the following to your `configuration.yaml` file:
60+
61+
```yaml
62+
# Example configuration.yaml entry
63+
binary_sensor:
64+
- platform: bloomsky
65+
monitored_conditions:
66+
- Night
67+
- Rain
68+
```
69+
70+
{% configuration %}
71+
monitored_conditions:
72+
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
73+
required: true
74+
type: list
75+
keys:
76+
night:
77+
description: Night
78+
rain:
79+
description: Rain
80+
{% endconfiguration %}
81+
82+
## {% linkable_title Camera %}
83+
84+
The `bloomsky` camera component allows you to view the current photo created by the camera in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with [BloomSky sensors](#sensor).
85+
86+
### {% linkable_title Configuration %}
87+
88+
To enable this camera in your installation, set up the BloomSky component with your API key and add the following to your `configuration.yaml` file:
89+
90+
```yaml
91+
# Example configuration.yaml entry
92+
camera:
93+
- platform: bloomsky
94+
```
95+
96+
## {% linkable_title Sensor %}
97+
98+
The `bloomsky` sensor component allows you to view the measurements made by sensors in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with the [BloomSky camera](#camera).
99+
100+
### {% linkable_title Configuration %}
101+
102+
To enable these sensors in your installation, set up the BloomSky component with your API key add the following to your `configuration.yaml` file:
103+
104+
```yaml
105+
# Example configuration.yaml entry
106+
sensor:
107+
platform: bloomsky
108+
monitored_conditions:
109+
- Temperature
110+
- Humidity
111+
- Pressure
112+
- UVIndex
113+
- Luminance
114+
- Voltage
115+
```
116+
117+
{% configuration %}
118+
monitored_conditions:
119+
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
120+
required: true
121+
type: list
122+
keys:
123+
humidity:
124+
description: Humidity
125+
luminance:
126+
description: Luminance
127+
pressure:
128+
description: Pressure
129+
temperature:
130+
description: Temperature
131+
uvindex:
132+
description: UVIndex
133+
voltage:
134+
description: Voltage
135+
{% endconfiguration %}
136+
137+
More conditions are available using the [BloomSky binary sensor](#binary-sensor) component.

source/_components/camera.bloomsky.markdown

Lines changed: 0 additions & 26 deletions
This file was deleted.

source/_components/climate.daikin.markdown

Lines changed: 0 additions & 26 deletions
This file was deleted.

source/_components/daikin.markdown

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,23 @@ comments: false
88
sharing: true
99
footer: true
1010
logo: daikin.png
11-
ha_category: Climate
11+
ha_category:
12+
- Climate
13+
- Sensor
1214
ha_release: 0.59
1315
ha_iot_class: "Local Polling"
16+
redirect_from:
17+
- /components/climate.daikin/
18+
- /components/sensor.daikin/
1419
---
1520

1621
The `daikin` component integrates Daikin air conditioning systems into Home Assistant.
1722

23+
There is currently support for the following device types within Home Assistant:
24+
25+
- [Climate](#climate)
26+
- [Sensor](#sensor)
27+
1828
## {% linkable_title Supported hardware %}
1929

2030
**Only** the European versions of Daikin AC (models BRP069A41, 42, 43, 45).
@@ -39,5 +49,23 @@ hosts:
3949
description: List of IP addresses or hostnames.
4050
required: false
4151
default: All discovered hosts
42-
type: list
52+
type: list
4353
{% endconfiguration %}
54+
55+
## {% linkable_title Climate %}
56+
57+
The `daikin` climate platform integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
58+
59+
- **mode** (cool, heat, dry, fan only or auto)
60+
- **fan speed** (on supported models)
61+
- **target temperature**
62+
- **swing mode** (on supported models)
63+
64+
Current temperature is displayed.
65+
66+
## {% linkable_title Sensor %}
67+
68+
The `daikin` sensor platform integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
69+
70+
- Inside temperature
71+
- Outside temperature

source/_components/linode.markdown

Lines changed: 59 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,34 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
ha_category: System Monitor
10+
ha_category:
11+
- System Monitor
12+
- Binary Sensor
13+
- Switch
1114
logo: linode.png
1215
ha_release: 0.57
1316
ha_iot_class: "Cloud Polling"
17+
redirect_from:
18+
- /components/binary_sensor.linode/
19+
- /components/switch.linode/
1420
---
1521

1622
The `linode` component allows you to access the information about your [Linode](https://linode.com) systems from Home Assistant.
1723

24+
There is currently support for the following device types within Home Assistant:
25+
26+
- [Binary Sensor](#binary-sensor)
27+
- [Switch](#switch)
28+
1829
## {% linkable_title Setup %}
1930

2031
Obtain your oAuth2 Access Token from Linode account.
2132

22-
* <http://cloud.linode.com>
23-
* Log in
24-
* Select API Tokens
25-
* Create a Personal Access Token,
26-
* Assigned scope (Please choose the least possible access required.)
33+
- <http://cloud.linode.com>
34+
- Log in
35+
- Select API Tokens
36+
- Create a Personal Access Token,
37+
- Assigned scope (Please choose the least possible access required.)
2738

2839
## {% linkable_title Configuration %}
2940

@@ -41,3 +52,45 @@ linode:
4152
required: true
4253
type: string
4354
{% endconfiguration %}
55+
56+
## {% linkable_title Binary Sensor %}
57+
58+
The `linode` binary sensor platform allows you to monitor your Linode nodes.
59+
60+
Add the following to your `configuration.yaml` file:
61+
62+
```yaml
63+
# Example configuration.yaml entry
64+
binary_sensor:
65+
- platform: linode
66+
nodes:
67+
- 'myvpsname'
68+
```
69+
70+
{% configuration %}
71+
nodes:
72+
description: List of VPSs you want to control.
73+
required: true
74+
type: string
75+
{% endconfiguration %}
76+
77+
## {% linkable_title Switch %}
78+
79+
The `linode` switch platform allows you to turn your Linode nodes on and off.
80+
81+
Add the following to your `configuration.yaml` file:
82+
83+
```yaml
84+
# Example configuration.yaml entry
85+
switch:
86+
- platform: linode
87+
nodes:
88+
- 'myvpsname'
89+
```
90+
91+
{% configuration linode %}
92+
nodes:
93+
description: List of VPSs you want to control.
94+
required: true
95+
type: string
96+
{% endconfiguration %}

0 commit comments

Comments
 (0)