Add 0.11 release blog post
This commit is contained in:
parent
74341e940f
commit
bd1b46fade
18 changed files with 255 additions and 42 deletions
|
@ -12,7 +12,7 @@ ha_category: Voice
|
|||
featured: false
|
||||
---
|
||||
|
||||
The Alexa component allows you to integrate Home Assistant into Alexa/Amazon Echo. This component will allow you to query information within Home Assistant by using your voice. There are no supported sentences out of the box as of now, you will have to define them all yourself. This component does not yet allow the control of devices connected to Home Assistant.
|
||||
The Alexa component allows you to integrate Home Assistant into Alexa/Amazon Echo. This component will allow you to query information and call services within Home Assistant by using your voice. There are no supported sentences out of the box as of now, you will have to define them all yourself.
|
||||
|
||||
<div class='videoWrapper'>
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/1Ke3mtWd_cQ" frameborder="0" allowfullscreen></iframe>
|
||||
|
@ -102,6 +102,10 @@ alexa:
|
|||
{% endif %}
|
||||
|
||||
LocateIntent:
|
||||
action:
|
||||
service: notify.notify
|
||||
data:
|
||||
message: Your location has been queried via Alexa.
|
||||
speech:
|
||||
type: plaintext
|
||||
text: >
|
||||
|
|
|
@ -8,7 +8,7 @@ comments: false
|
|||
sharing: true
|
||||
footer: true
|
||||
logo: raspberry-pi.png
|
||||
ha_category: DIY
|
||||
ha_category: Sensor
|
||||
---
|
||||
|
||||
|
||||
|
|
26
source/_components/input_boolean.markdown
Normal file
26
source/_components/input_boolean.markdown
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
layout: component
|
||||
title: "Input Boolean"
|
||||
description: "Instructions how to integrate the Input Boolean component into Home Assistant."
|
||||
date: 2016-01-17 16:58
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: home-assistant.png
|
||||
ha_category: Automation
|
||||
---
|
||||
|
||||
The input boolean component allows the user to define boolean values that can be controlled via the frontend and can be used within conditions of automation. This can for example be used to disable or enable certain automations.
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
input_boolean:
|
||||
notify_home:
|
||||
# Optional, friendly name of entry
|
||||
name: Notify when someome arrives home
|
||||
# Optional, value when Home Assistant starts
|
||||
initial: off
|
||||
# Optional, icon for entry
|
||||
icon: mdi:car
|
||||
```
|
|
@ -14,7 +14,7 @@ featured: true
|
|||
|
||||
|
||||
|
||||
Philips Hue support is integrated into Home Assistant as a light platform. The preferred way to setup the Philips Hue platform is by enabling the [the discovery component]({{site_root}}/components/discovery/).
|
||||
Philips Hue support is integrated into Home Assistant as a light platform. The preferred way to setup the Philips Hue platform is by enabling the [the discovery component](/components/discovery/).
|
||||
|
||||
If you want to enable the light component directly, add the following lines to your `configuration.yaml`:
|
||||
|
||||
|
@ -23,4 +23,6 @@ If you want to enable the light component directly, add the following lines to y
|
|||
light:
|
||||
platform: hue
|
||||
host: DEVICE_IP_ADDRESS
|
||||
# Optional, make this unique if specifying multiple Hue hubs
|
||||
filename: my_hue_hub_token.conf
|
||||
```
|
||||
|
|
44
source/_components/mysensors.markdown
Normal file
44
source/_components/mysensors.markdown
Normal file
|
@ -0,0 +1,44 @@
|
|||
---
|
||||
layout: component
|
||||
title: "MySensors"
|
||||
description: "Instructions how to integrate MySensors sensors into Home Assistant."
|
||||
date: 2015-05-14 21:57
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: mysensors.png
|
||||
ha_category: Hub
|
||||
featured: true
|
||||
---
|
||||
|
||||
The [MySensors](https://www.mysensors.org) project combines Arduino boards with NRF24L01 radio boards to build sensor networks. The component will automatically add all available switches and sensors to Home Assistant.
|
||||
|
||||
Integrate your Serial MySensors Gateway by adding the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
mysensors:
|
||||
gateways:
|
||||
- port: '/dev/ttyUSB0'
|
||||
persistence_file: 'path/mysensors.json'
|
||||
- port: '/dev/ttyACM1'
|
||||
persistence_file: 'path/mysensors2.json'
|
||||
debug: true
|
||||
persistence: true
|
||||
version: '1.5'
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **port** (*Required*): The port where your board is connected to your Home Assistant host.
|
||||
- **debug** (*Optional*): Enable or disable verbose debug logging.
|
||||
- **persistence** (*Optional*): Enable or disable local persistence of sensor information. If this is disabled, then each sensor will need to send presentation messages after Home Assistant starts.
|
||||
- **persistence_file** (*Optional*): Path to a file to save sensor information. The file extension determines the file type. Currently supported file types are 'pickle' and 'json'.
|
||||
- **version** (*Optional*): Specifies the MySensors protocol version to use (ex. 1.4, 1.5).
|
||||
|
||||
If you are using an original Arduino the port will be named `ttyACM*`. The exact number can be determined with the command shown below.
|
||||
|
||||
```bash
|
||||
$ ls /dev/ttyACM*
|
||||
```
|
|
@ -39,11 +39,3 @@ Configuration variables:
|
|||
|
||||
- **username** (*Required*): This is the id given by FreeMobile to access to your online account.
|
||||
- **access_token** (*Required*): You can get this token by activating the SMS API in your online account.
|
||||
|
||||
#### Example service payload
|
||||
|
||||
```json
|
||||
{
|
||||
"message": "Hello World"
|
||||
}
|
||||
```
|
||||
|
|
|
@ -1,40 +1,17 @@
|
|||
---
|
||||
layout: component
|
||||
title: "MySensors sensor"
|
||||
title: "MySensors sensors"
|
||||
description: "Instructions how to integrate MySensors sensors into Home Assistant."
|
||||
date: 2015-05-14 21:57
|
||||
date: 2016-01-17 15:49
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: mysensors.png
|
||||
ha_category: Sensor
|
||||
featured: true
|
||||
featured: false
|
||||
---
|
||||
|
||||
Integrates MySensors sensors into Home Assistant. See the [main component] for configuration instructions.
|
||||
|
||||
The [MySensors](https://www.mysensors.org) project combines Arduino boards with NRF24L01 radio boards to build sensor networks. The mysensors platform support sensors connected to the MYSensors Gateway.
|
||||
|
||||
Integrate your Serial MYSensors Gateway by adding the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
sensor:
|
||||
platform: mysensors
|
||||
port: /dev/ttyACM0
|
||||
```
|
||||
|
||||
Configuration variables:
|
||||
|
||||
- **port** (*Required*): The port where your board is connected to your Home Assistant host.
|
||||
- **debug** (*Optional*): Enable or disable verbose debug logging.
|
||||
- **persistence** (*Optional*): Enable or disable local persistence of sensor information. If this is disabled, then each sensor will need to send presentation messages after Home Assistant starts.
|
||||
- **persistence_file** (*Optional*): Path to a file to save sensor information. The file extension determines the file type. Currently supported file types are 'pickle' and 'json'.
|
||||
- **version** (*Optional*): Specifies the MySensors protocol version to use (ex. 1.4, 1.5).
|
||||
|
||||
If you are using an original Arduino the port will be named `ttyACM*`. The exact number can be determined with the command shown below.
|
||||
|
||||
```bash
|
||||
$ ls /dev/ttyACM*
|
||||
```
|
||||
|
||||
[main component]: /components/mysensors/
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
layout: component
|
||||
title: "Nest thermostat"
|
||||
description: "Instructions how to integrate Nest thermostats sensors within Home Assistant."
|
||||
date: 2016-01-13 19:59
|
||||
# Year set to 2017 to unpublish till 0.12 release
|
||||
date: 2017-01-13 19:59
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
|
|
17
source/_components/sensor.tellduslive.markdown
Normal file
17
source/_components/sensor.tellduslive.markdown
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: component
|
||||
title: "Telldus Live sensors"
|
||||
description: "Instructions how to integrate Telldus Live sensors into Home Assistant."
|
||||
date: 2016-01-17 15:49
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: telldus.png
|
||||
ha_category: Sensor
|
||||
featured: false
|
||||
---
|
||||
|
||||
Integrates Telldus Live sensors into Home Assistant. See the [main component] for configuration instructions.
|
||||
|
||||
[main component]: /components/tellduslive/
|
17
source/_components/switch.mysensors.markdown
Normal file
17
source/_components/switch.mysensors.markdown
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: component
|
||||
title: "MySensors switches"
|
||||
description: "Instructions how to integrate MySensors switches into Home Assistant."
|
||||
date: 2016-01-17 15:49
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: mysensors.png
|
||||
ha_category: Switch
|
||||
featured: false
|
||||
---
|
||||
|
||||
Integrates MySensors switches into Home Assistant. See the [main component] for configuration instructions.
|
||||
|
||||
[main component]: /components/mysensors/
|
|
@ -1,14 +1,14 @@
|
|||
---
|
||||
layout: component
|
||||
title: "Raspberry PI GPIO switch"
|
||||
description: "Instructions how to integrate the GPIO of a Raspberry PI into Home Assistant."
|
||||
description: "Instructions how to integrate the GPIO of a Raspberry PI into Home Assistant as a switch."
|
||||
date: 2015-08-07 14:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: raspberry-pi.png
|
||||
ha_category: DIY
|
||||
ha_category: Switch
|
||||
---
|
||||
|
||||
|
||||
|
|
17
source/_components/switch.tellduslive.markdown
Normal file
17
source/_components/switch.tellduslive.markdown
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: component
|
||||
title: "Telldus Live switches"
|
||||
description: "Instructions how to integrate Telldus Live switches into Home Assistant."
|
||||
date: 2016-01-17 15:49
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: telldus.png
|
||||
ha_category: Switch
|
||||
featured: false
|
||||
---
|
||||
|
||||
Integrates Telldus Live switches into Home Assistant. See the [main component] for configuration instructions.
|
||||
|
||||
[main component]: /components/tellduslive/
|
30
source/_components/tellduslive.markdown
Normal file
30
source/_components/tellduslive.markdown
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
layout: component
|
||||
title: "Telldus Live"
|
||||
description: "Instructions how to integrate Telldus Live into Home Assistant."
|
||||
date: 2016-01-17 16:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: telldus.png
|
||||
ha_category: Hub
|
||||
featured: false
|
||||
---
|
||||
|
||||
[Telldus Live] is a cloud platform that connects to your Tellstick connected gear at home.
|
||||
|
||||
[Telldus Live]: https://live.telldus.com
|
||||
|
||||
To get started using Telldus Live, you will have to obtain developer keys from [here][developer-keys].
|
||||
|
||||
[developer-keys]: https://api.telldus.com/keys/index
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
tellduslive:
|
||||
public_key: XX
|
||||
private_key: XX
|
||||
token: XX
|
||||
token_secret: XX
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue