Merge branch 'current' into next

This commit is contained in:
Paulus Schoutsen 2018-07-15 21:19:33 +02:00
commit cb00090d9e
12 changed files with 65 additions and 30 deletions

View File

@ -7,10 +7,10 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: homematic.png
logo: homematicip_cloud.png
ha_category: Binary Sensor
ha_release: 0.70
ha_iot_class: "Local Push"
ha_iot_class: "Cloud Push"
---
The `homematicip_cloud` binary_switch platform allows you to control

View File

@ -16,6 +16,10 @@ ha_iot_class: "Cloud Polling"
The `honeywell` climate platform let you control [Honeywell Connected](http://getconnected.honeywell.com/en/) thermostats from Home Assistant.
<p class='note'>
This platform does NOT connect to MyTotalConnectComfort.com. If you have a Honeywell WIFI thermostat that is connected through MyTotalConnectComfort.com, you may might to take a look at the IFTTT component which can bridge the gap between Home Assistant and MyTotalConnectComfort.com WIFI thermostats on a limited basis.
</p>
To set it up, add the following information to your `configuration.yaml` file:
```yaml

View File

@ -13,7 +13,7 @@ featured: false
ha_release: 0.7.4
---
This platform allows you to detect presence using [Owntracks](http://owntracks.org/). OwnTracks allows users to track their location on iOS phones and publish it to an MQTT broker. This platform will connect to the broker and monitor for new locations.
This platform allows you to detect presence using [Owntracks](http://owntracks.org/). OwnTracks allows users to track their location on iOS and Android phones and publish it to an MQTT broker. This platform will connect to the broker and monitor for new locations.
This component requires [the MQTT component](/components/mqtt/) to be set up and works very well together with [the zone component](/components/zone/).

View File

@ -57,9 +57,18 @@ discovery:
- homekit
```
Configuration variables:
{% linkable_title Configuration variables: %}
- **ignore** (*Optional*): A list of platforms that never will be automatically configured by `discovery`.
{% configuration discovery %}
ignore:
description: A list of platforms that never will be automatically configured by `discovery`.
required: false
type: string
enable:
description: A list of platforms not enabled by default that `discovery` should discover.
required: false
type: string
{% endconfiguration %}
Valid values for ignore are:
@ -92,29 +101,34 @@ Valid values for ignore are:
* `yeelight`: Yeelight Sunflower bulb
* `xiaomi_gw`: Xiaomi Aqara gateway
- **enable** (*Optional*): A list of platforms not enabled by default that `discovery` should discover.
Valid values for enable are:
* `homekit`: HomeKit accessories
<p class='note'>
## {% linkable_title Troubleshooting %}
### {% linkable_title UPnP %}
Home Assistant must be on the same network as the devices for uPnP discovery to work.
If running Home Assistant in a [Docker container](/docs/installation/docker/) use switch `--net=host` to put it on the host's network.
</p>
<p class='note warning'>
### {% linkable_title Windows %}
#### {% linkable_title 64-bit Python %}
There is currently a <a href='https://bitbucket.org/al45tair/netifaces/issues/17/dll-fails-to-load-windows-81-64bit'>known issue</a> with running this component on a 64-bit version of Python and Windows.
</p>
<p class='note'>
#### {% linkable_title Python 3.5 %}
If you are on Windows and you're using Python 3.5, download the [Netifaces](http://www.lfd.uci.edu/~gohlke/pythonlibs/#netifaces) dependency.
</p>
<p class='note'>
### {% linkable_title could not install dependency netdisco %}
If you see `Not initializing discovery because could not install dependency netdisco==0.6.1` in the logs, you will need to install the `python3-dev` or `python3-devel` package on your system manually (eg. `sudo apt-get install python3-dev` or `sudo dnf -y install python3-devel`). On the next restart of Home Assistant, the discovery should work. If you still get an error, check if you have a compiler (`gcc`) available on your system.
### {% linkable_title DSM and Synology %}
For DSM/Synology, install via debian-chroot [see this forum post](https://community.home-assistant.io/t/error-starting-home-assistant-on-synology-for-first-time/917/15).
</p>
## {% linkable_title New platforms %}
If you are developing a new platform, please read [how to make your platform discoverable](/developers/component_discovery/) for further details.

View File

@ -7,8 +7,9 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: homematicip_cloud.png
ha_category: Hub
ha_iot_class: "Cloud Polling"
ha_iot_class: "Cloud Push"
ha_release: 0.66
featured: false
---

View File

@ -7,10 +7,10 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: homematic.png
logo: homematicip_cloud.png
ha_category: Switch
ha_release: 0.70
ha_iot_class: "Local Push"
ha_iot_class: "Cloud Push"
---
The `homematicip_cloud` light platform allows you to control

View File

@ -30,6 +30,8 @@ rachio:
api_key: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
```
Follow the instructions on [Rachio Binary Sensor](/components/binary_sensor.rachio/) or [Rachio Switch](/components/switch.rachio/) to add Rachio platforms.
### {% linkable_title iFrame %}
If you would like to see and control more detailed zone information, create an [iFrame](/components/panel_iframe/) that renders the Rachio web app.

View File

@ -7,10 +7,10 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: homematic.png
logo: homematicip_cloud.png
ha_category: Sensor
ha_release: 0.66
ha_iot_class: "Local Push"
ha_iot_class: "Cloud Push"
---
The `homematicip_cloud` sensor platform allows you to control

View File

@ -7,10 +7,10 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: homematic.png
logo: homematicip_cloud.png
ha_category: Switch
ha_release: 0.70
ha_iot_class: "Local Push"
ha_iot_class: "Cloud Push"
---
The `homematicip_cloud` switch platform allows you to control

View File

@ -24,13 +24,27 @@ type:
type: string
entities:
required: true
description: "A list of entity IDs or an `entity` object."
description: "A list of entity IDs or `entity` objects, see below."
type: list
title:
required: false
description: Card title
type: string
default: none
{% endconfiguration %}
## {% linkable_title Options For Entities %}
If you define entities as objects instead of strings, you can add more customization and configuration:
{% configuration %}
entity:
required: true
description: Home Assistant entity ID.
type: string
name:
required: false
description: Overwrites friendly name.
type: string
{% endconfiguration %}
## {% linkable_title Examples %}

View File

@ -13,7 +13,7 @@ Hass.io images are available for:
- Download the appropriate image for your IoT:
- [Raspberry Pi / Zero][pi1]
- [Raspberry Pi / Zero][pi0-w]
- [Raspberry Pi / Zero W][pi0-w]
- [Raspberry Pi 2][pi2]
- [Raspberry Pi 3 32bit][pi3-32]
- [Raspberry Pi 3 64bit][pi3-64]
@ -74,12 +74,12 @@ A detailed guide about running Hass.io as a virtual machine is available in the
[Etcher]: https://etcher.io/
[Virtual Appliance]: https://github.com/home-assistant/hassos/blob/dev/Documentation/boards/ova.md
[hassos-network]: https://github.com/home-assistant/hassos/blob/dev/Documentation/network.md
[pi0-w]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_rpi0-w-1.5.img.gz
[pi1]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_rpi-1.5.img.gz
[pi2]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_rpi2-1.5.img.gz
[pi0-w]: https://github.com/home-assistant/hassos/releases/download/1.6/hassos_rpi0-w-1.6.img.gz
[pi1]: https://github.com/home-assistant/hassos/releases/download/1.6/hassos_rpi-1.6.img.gz
[pi2]: https://github.com/home-assistant/hassos/releases/download/1.6/hassos_rpi2-1.6.img.gz
[pi3-32]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_rpi3-1.5.img.gz
[pi3-64]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_rpi3-64-1.5.img.gz
[vmdk]: https://github.com/home-assistant/hassos/releases/download/1.5/hassos_ova-1.5.vmdk
[vmdk]: https://github.com/home-assistant/hassos/releases/download/1.6/hassos_ova-1.6.vmdk
[linux]: https://github.com/home-assistant/hassio-build/tree/master/install#install-hassio
[local]: http://hassio.local:8123
[samba]: /addons/samba/

View File

@ -25,7 +25,7 @@ footer: true
- 📣 New button to show unused entities in Lovelace
## Changes in 0.73.0b5 %}
## {% linkable_title Changes in 0.73.0b5 %}
- 🏁 Only minor fixes in this release