Skip to content

Commit e87a946

Browse files
committed
Add initial docs for cloud component
1 parent 2acf4e6 commit e87a946

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

source/_components/cloud.markdown

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
layout: page
3+
title: "Cloud"
4+
description: "Enable the Home Assistant Cloud integration."
5+
date: 2017-11-17 20:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: home-assistant.png
11+
ha_release: 0.57
12+
---
13+
14+
The Home Assistant Cloud allows you to quickly integrate your local instance with various cloud services. Any processing of services from other cloud services is handled by your local instance.
15+
16+
To get started, create an account and log in via the configuration panel in your Home Assistant instance. There is no need to configure your router or expose your instance to the internet in any other way.
17+
18+
### {% linkable_title Amazon Alexa %}
19+
20+
The Alexa integration allows users to control the entities via the [Home Assistant Smart Home skill for Alexa][alexa skill]. This means that you can say things like "Alexa, turn on the kitchen light" to control your local instance.
21+
22+
```yaml
23+
# Example configuration.yaml entry configuring Alexa
24+
cloud:
25+
alexa:
26+
filter:
27+
include_entities:
28+
- light.kitchen
29+
include_domains:
30+
- switch
31+
exclude_entities:
32+
- light.living_room
33+
exclude_domains:
34+
- script
35+
```
36+
37+
{% configuration %}
38+
alexa:
39+
description: Configuration options for the Amazon Alexa integration.
40+
required: false
41+
type: map
42+
keys:
43+
filter:
44+
description: Filters for entities to include/exclude from Alexa.
45+
required: false
46+
type: map
47+
keys:
48+
include_entities:
49+
description: Entity IDs to include.
50+
required: false
51+
type: list
52+
include_domains:
53+
description: Domains to include.
54+
required: false
55+
type: list
56+
exclude_entities:
57+
description: Entity IDs to exclude.
58+
required: false
59+
type: list
60+
exclude_domains:
61+
description: Domains to exclude.
62+
required: false
63+
type: list
64+
{% endconfiguration %}
65+
66+
[alexa skill]: https://alexa.amazon.com/spa/index.html#skills/dp/B0772J1QKB/?ref=skill_dsk_skb_sr_2

0 commit comments

Comments
 (0)