mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
Update Daikin docs (Typo, logo, etc.)
This commit is contained in:
parent
6984581175
commit
3e06840f8f
@ -7,15 +7,15 @@ sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: daikin.svg
|
||||
logo: daikin.png
|
||||
ha_category: Climate
|
||||
ha_release: 0.59
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
### Description ###
|
||||
|
||||
The climate component integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
|
||||
The `daikin` climate platform integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
|
||||
|
||||
- **mode** (cool, heat, dry, fan only or auto)
|
||||
- **fan speed**
|
||||
- **target temperature**
|
||||
@ -24,23 +24,26 @@ The climate component integrates Daikin air conditioning systems into Home Assis
|
||||
Current temperature is displayed.
|
||||
|
||||
<p class='note warning'>
|
||||
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
</p>
|
||||
|
||||
### Configuration ###
|
||||
|
||||
Manual configuration and customization is possible by using the sample configuration from below:
|
||||
To enable the platform, add the following lines to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
climate:
|
||||
- platform: daikin
|
||||
host: 10.0.0.1
|
||||
name: optional name
|
||||
host: 10.0.0.1
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **host** (*Required*): IP or hostname of the device
|
||||
- **name** (*Optional*): If the device has a name previously set by the user than that name will be used
|
||||
{% configuration %}
|
||||
host:
|
||||
description: IP or hostname of the device.
|
||||
required: true
|
||||
type: string
|
||||
name:
|
||||
description: If the device has a name previously set by the user than that name will be used.
|
||||
required: false
|
||||
type: string
|
||||
{% endconfiguration %}
|
||||
|
||||
|
@ -7,28 +7,26 @@ sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: daikin.svg
|
||||
logo: daikin.png
|
||||
ha_category: Hub
|
||||
ha_release: 0.59
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
### Description ###
|
||||
|
||||
The component integrates Daikin air conditioning systems into Home Assistant.
|
||||
|
||||
To automatically add all your Daikin devices (ACs and associated sensors) into your Home Assistant installation, add the following to your 'configuration.yaml' file:
|
||||
The `daikin` component integrates Daikin air conditioning systems into Home Assistant.
|
||||
|
||||
<p class='note warning'>
|
||||
Please note, the Daikin platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
Please note, the Daikin platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
</p>
|
||||
|
||||
To automatically add all your Daikin devices (ACs and associated sensors) into your Home Assistant installation, add the following to your 'configuration.yaml' file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
daikin:
|
||||
hosts:
|
||||
- 192.168.4.161
|
||||
|
||||
monitored_conditions:
|
||||
- inside_temperature
|
||||
- outside_temperature
|
||||
@ -43,7 +41,7 @@ hosts:
|
||||
monitored_conditions:
|
||||
description: List of items you want to monitor for each device.
|
||||
required: false
|
||||
detault: All conditions
|
||||
default: All conditions
|
||||
type: list
|
||||
keys:
|
||||
inside_temperature:
|
||||
@ -53,11 +51,6 @@ monitored_conditions:
|
||||
{% endconfiguration %}
|
||||
|
||||
<p class='note warning'>
|
||||
Please note that some AC devices may report outside temperature only when they are turned on.
|
||||
Please note that some AC devices may report outside temperature only when they are turned on.
|
||||
</p>
|
||||
|
||||
|
||||
The Daikin Home Assistant platform currently supports the following Hive devices:
|
||||
|
||||
- [Climate](/components/climate.daikin)
|
||||
- [Sensor](/components/sensor.daikin)
|
||||
|
@ -7,36 +7,32 @@ sidebar: True
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: daikin.svg
|
||||
logo: daikin.png
|
||||
ha_category: Sensor
|
||||
ha_release: 0.59
|
||||
ha_iot_class: "Local Polling"
|
||||
---
|
||||
|
||||
### Description ###
|
||||
|
||||
The sensor component integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
|
||||
The `daikin` sensor platform integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
|
||||
|
||||
- **inside temperature**
|
||||
- **outside temperature**
|
||||
|
||||
<p class='note warning'>
|
||||
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
Please note, the `daikin` platform integrates **ONLY the european versions of Daikin ACs (models BRP069A41, 42, 43, 45)** into Home Assistant
|
||||
</p>
|
||||
|
||||
### Configuration ###
|
||||
|
||||
Manual configuration and customization is possible by using the sample configuration from below:
|
||||
To enable the platform, add the following lines to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
- platform: daikin
|
||||
host: 10.0.0.1
|
||||
name: optional name
|
||||
monitored_conditions:
|
||||
- inside_temperature
|
||||
- outside_temperature
|
||||
|
||||
host: 10.0.0.1
|
||||
monitored_conditions:
|
||||
- inside_temperature
|
||||
- outside_temperature
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
@ -47,7 +43,7 @@ host:
|
||||
monitored_conditions:
|
||||
description: List of items you want to monitor for each device.
|
||||
required: false
|
||||
detault: All conditions
|
||||
default: All conditions
|
||||
type: list
|
||||
keys:
|
||||
inside_temperature:
|
||||
|
@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.1"
|
||||
id="svg53084"
|
||||
viewBox="0 0 300 64.616861"
|
||||
height="64.616859"
|
||||
width="300">
|
||||
<defs
|
||||
id="defs53086" />
|
||||
<metadata
|
||||
id="metadata53089">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(-393.36411,-761.77017)"
|
||||
id="layer1">
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,462.23619,762.77017)"
|
||||
id="g53028">
|
||||
<path
|
||||
id="path53030"
|
||||
style="fill:#44c8f5;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -37.453,0 0,-34.554 L 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,428.29471,762.77017)"
|
||||
id="g53032">
|
||||
<path
|
||||
id="path53034"
|
||||
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -18.724,0 0,-17.285 L 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,557.00956,776.36126)"
|
||||
id="g53036">
|
||||
<path
|
||||
id="path53038"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -4.889,-19.547 8.638,0 L 8.634,0 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,521.25957,796.89105)"
|
||||
id="g53040">
|
||||
<path
|
||||
id="path53042"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 -1.981,0 1.213,5.639 2.249,0 0,0 Z m -1.229,11.331 -11.109,-19.546 5.713,0 1.844,3.258 7.931,0 0.591,-3.258 8.432,0 -3.584,19.546 -9.818,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,628.49506,776.36126)"
|
||||
id="g53044">
|
||||
<path
|
||||
id="path53046"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -4.876,-19.547 8.636,0 L 8.637,0 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,621.50018,776.36126)"
|
||||
id="g53048">
|
||||
<path
|
||||
id="path53050"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 -8.851,0 -7.409,-6.394 1.617,6.394 -8.279,0 -4.876,-19.547 8.253,0 1.686,6.748 4.413,-6.748 9.99,0 L -10.855,-9.31 0,0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,486.6186,792.45854)"
|
||||
id="g53052">
|
||||
<path
|
||||
id="path53054"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="m 0,0 c 0,0 -0.561,-6.349 -5.971,-6.349 l -3.061,0 2.696,10.543 2.778,0 C -2.564,4.188 0.313,3.93 0,0 Z m -0.438,8.874 -2.234,0.007 -10.808,0 -4.876,-19.539 10.732,0 4.246,-0.006 c 5.978,0 11.861,4.45 11.861,11.266 0,8.02 -8.921,8.272 -8.921,8.272" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.812145,0,0,-1.812145,681.52929,776.35582)"
|
||||
id="g53056">
|
||||
<path
|
||||
id="path53058"
|
||||
style="fill:#00a0e4;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
d="M 0,0 -2.881,-11.51 -6.719,0 l -9.606,0 -4.88,-19.55 5.973,0 2.909,11.611 3.85,-11.611 9.565,0 L 5.979,0 0,0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.4 KiB |
Loading…
x
Reference in New Issue
Block a user