Skip to content

Commit 3e06840

Browse files
committed
Update Daikin docs (Typo, logo, etc.)
1 parent 6984581 commit 3e06840

File tree

4 files changed

+33
-136
lines changed

4 files changed

+33
-136
lines changed

source/_components/climate.daikin.markdown

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
logo: daikin.svg
10+
logo: daikin.png
1111
ha_category: Climate
1212
ha_release: 0.59
1313
ha_iot_class: "Local Polling"
1414
---
1515

16-
### Description ###
1716

18-
The climate component integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
17+
The `daikin` climate platform integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
18+
1919
- **mode** (cool, heat, dry, fan only or auto)
2020
- **fan speed**
2121
- **target temperature**
@@ -24,23 +24,26 @@ The climate component integrates Daikin air conditioning systems into Home Assis
2424
Current temperature is displayed.
2525

2626
<p class='note warning'>
27-
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
27+
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
2828
</p>
2929

30-
### Configuration ###
31-
32-
Manual configuration and customization is possible by using the sample configuration from below:
30+
To enable the platform, add the following lines to your `configuration.yaml` file:
3331

3432
```yaml
3533
# Example configuration.yaml entry
3634
climate:
3735
- platform: daikin
38-
host: 10.0.0.1
39-
name: optional name
36+
host: 10.0.0.1
4037
```
4138
42-
Configuration variables:
43-
44-
- **host** (*Required*): IP or hostname of the device
45-
- **name** (*Optional*): If the device has a name previously set by the user than that name will be used
39+
{% configuration %}
40+
host:
41+
description: IP or hostname of the device.
42+
required: true
43+
type: string
44+
name:
45+
description: If the device has a name previously set by the user than that name will be used.
46+
required: false
47+
type: string
48+
{% endconfiguration %}
4649

source/_components/daikin.markdown

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,26 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
logo: daikin.svg
10+
logo: daikin.png
1111
ha_category: Hub
1212
ha_release: 0.59
1313
ha_iot_class: "Local Polling"
1414
---
1515

16-
### Description ###
1716

18-
The component integrates Daikin air conditioning systems into Home Assistant.
19-
20-
To automatically add all your Daikin devices (ACs and associated sensors) into your Home Assistant installation, add the following to your 'configuration.yaml' file:
17+
The `daikin` component integrates Daikin air conditioning systems into Home Assistant.
2118

2219
<p class='note warning'>
23-
Please note, the Daikin platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
20+
Please note, the Daikin platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
2421
</p>
2522

23+
To automatically add all your Daikin devices (ACs and associated sensors) into your Home Assistant installation, add the following to your 'configuration.yaml' file:
24+
2625
```yaml
2726
# Example configuration.yaml entry
2827
daikin:
2928
hosts:
3029
- 192.168.4.161
31-
3230
monitored_conditions:
3331
- inside_temperature
3432
- outside_temperature
@@ -43,7 +41,7 @@ hosts:
4341
monitored_conditions:
4442
description: List of items you want to monitor for each device.
4543
required: false
46-
detault: All conditions
44+
default: All conditions
4745
type: list
4846
keys:
4947
inside_temperature:
@@ -53,11 +51,6 @@ monitored_conditions:
5351
{% endconfiguration %}
5452
5553
<p class='note warning'>
56-
Please note that some AC devices may report outside temperature only when they are turned on.
54+
Please note that some AC devices may report outside temperature only when they are turned on.
5755
</p>
5856
59-
60-
The Daikin Home Assistant platform currently supports the following Hive devices:
61-
62-
- [Climate](/components/climate.daikin)
63-
- [Sensor](/components/sensor.daikin)

source/_components/sensor.daikin.markdown

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,32 @@ sidebar: True
77
comments: false
88
sharing: true
99
footer: true
10-
logo: daikin.svg
10+
logo: daikin.png
1111
ha_category: Sensor
1212
ha_release: 0.59
1313
ha_iot_class: "Local Polling"
1414
---
1515

16-
### Description ###
1716

18-
The sensor component integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
17+
The `daikin` sensor platform integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
18+
1919
- **inside temperature**
2020
- **outside temperature**
2121

2222
<p class='note warning'>
23-
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
23+
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
2424
</p>
2525

26-
### Configuration ###
27-
28-
Manual configuration and customization is possible by using the sample configuration from below:
26+
To enable the platform, add the following lines to your `configuration.yaml` file:
2927

3028
```yaml
3129
# Example configuration.yaml entry
3230
sensor:
3331
- platform: daikin
34-
host: 10.0.0.1
35-
name: optional name
36-
monitored_conditions:
37-
- inside_temperature
38-
- outside_temperature
39-
32+
host: 10.0.0.1
33+
monitored_conditions:
34+
- inside_temperature
35+
- outside_temperature
4036
```
4137
4238
{% configuration %}
@@ -47,7 +43,7 @@ host:
4743
monitored_conditions:
4844
description: List of items you want to monitor for each device.
4945
required: false
50-
detault: All conditions
46+
default: All conditions
5147
type: list
5248
keys:
5349
inside_temperature:

source/images/supported_brands/daikin.svg

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

0 commit comments

Comments
 (0)