mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 16:56:50 +00:00
parent
193ae8a0d0
commit
b03e6e0ba4
@ -13,6 +13,10 @@ featured: true
|
||||
ha_release: 0.56
|
||||
---
|
||||
|
||||
<p class='note'>
|
||||
Use [Home Assistant Cloud](/components/cloud/) to integrate with Google Assistant without any effort.
|
||||
</p>
|
||||
|
||||
The `google_assistant` component allows you to control things via Google Assistant (on your mobile or tablet) or a Google Home device.
|
||||
|
||||
The Google Assistant component requires a bit more setup than most due to the way Google requires Assistant Apps to be set up.
|
||||
@ -134,7 +138,7 @@ If you're not using Linux, you can use sites such as [this one](https://www.brow
|
||||
1. Create a new project in the [developer console](https://console.actions.google.com/).
|
||||
a. Add/Import project
|
||||
b. Click on `BUILD` on the `Smart home` card
|
||||
c. Type in your home assistant url: `https://[YOUR HOME ASSISTANT URL:PORT]/api/google_assistant`, replace the `[YOUR HOME ASSISTANT URL:PORT]` with the domain / ip address and the port under which your Home Assistant is reachable.
|
||||
c. Type in your home assistant url: `https://[YOUR HOME ASSISTANT URL:PORT]/api/google_assistant`, replace the `[YOUR HOME ASSISTANT URL:PORT]` with the domain / ip address and the port under which your Home Assistant is reachable.
|
||||
d. Click `Done`. Then click on `Overview`, which will lead you to the app details screen.
|
||||
2. You'll need to fill out most of the information on that page, but none of it really matters since you won't be addressing the App directly, only through the Smart Home functionality built into Google Assistant.
|
||||
3. The final item on that page `Account linking` is required for your app to interact with Home Assistant.
|
||||
|
@ -0,0 +1,44 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Our Google Assistant skill is live!"
|
||||
description: "The Google Assistant integration for Home Assistant Cloud is now available to all."
|
||||
date: 2018-04-24 00:01:00
|
||||
date_formatted: "April 24, 2018"
|
||||
author: Paulus Schoutsen
|
||||
author_twitter: balloob
|
||||
comments: true
|
||||
categories: Announcement
|
||||
og_image: /images/blog/2018-04-google-assistant/google-assistant-home-assistant.png
|
||||
---
|
||||
|
||||
<p class='img'>
|
||||
<img
|
||||
src='/images/blog/2018-04-google-assistant/google-assistant-home-assistant.png'
|
||||
alt='Home Assistant logo and the Works with the Google Assistant badge'
|
||||
/>
|
||||
</p>
|
||||
|
||||
Guess what? Yep, our Google Assistant Smart Home skill is live! It's a mouthful but it means that you can now control your Home Assistant devices via any Google Assistant enabled device by simply saying things like "Ok Google, turn on the lights".
|
||||
|
||||
To get started:
|
||||
|
||||
- [Enable Home Assistant Cloud](/cloud/#enabling-the-cloud)
|
||||
- Install our skill for Google Assistant. As of this writing, the link is not live yet: you can find it by opening the Google Home app -> Home Control, tap on the blue + at the bottom right and find Hass.io in the list.
|
||||
- Optional: [Tweak the devices](/cloud/google_assistant/) that are getting exposed to Google Assistant.
|
||||
|
||||
Things to note:
|
||||
|
||||
- The skill is called Hass.io, but will work with normal Home Assistant too. The name was necessary to avoid confusion between Home Assistant, Google Assistant and Google Home.
|
||||
- Works with Home Assistant 0.65 or later.
|
||||
- All message handling is done local and is [open source](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/google_assistant/trait.py).
|
||||
- If you have an Android device with Google Assistant, you can control your devices too.
|
||||
- Home Assistant 0.68 will introduce a button to the Cloud config panel to trigger a sync of available devices.
|
||||
|
||||
Home Assistant Cloud is still in open beta and free to use. Open beta period has been extended to June 1. Many thanks to [Quadflight] for providing the Raspberry Pis that Google used for physical testing and thanks to [Arsaboo] for helping with testing.
|
||||
|
||||
<div class='videoWrapper'>
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/TQ3CoEHz5Xs" frameborder="0" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
[Quadflight]: https://github.com/quadflight
|
||||
[Arsaboo]: https://github.com/arsaboo
|
@ -7,7 +7,6 @@ sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
published: false
|
||||
---
|
||||
|
||||
The Google Assistant integration allows users to control the entities via the Home Assistant Smart Home skill for Google Assistant. This means that you can say things like "Ok Google, turn on the kitchen light" to control your local Home Assistant.
|
||||
|
@ -15,19 +15,16 @@ ha_iot_class: "Cloud Push"
|
||||
|
||||
<p class='note'>The Home Assistant Cloud is currently free and will become part of the upcoming Community Support Package. [Learn more](/blog/2017/12/17/introducing-home-assistant-cloud/)</p>
|
||||
|
||||
The Home Assistant Cloud allows you to quickly integrate your local Home Assistant with various cloud services like Amazon Alexa.
|
||||
|
||||
The following integrations are currently available:
|
||||
The Home Assistant Cloud allows you to quickly integrate your local Home Assistant with various cloud services. The following integrations are currently available:
|
||||
|
||||
- [Amazon Alexa (Amazon Echo)](/cloud/alexa/)
|
||||
|
||||
<!-- - [Google Assistant (Google Home)](/cloud/google_assistant/) -->
|
||||
- [Google Assistant (Google Home)](/cloud/google_assistant/)
|
||||
|
||||
### {% linkable_title How does it work? %}
|
||||
|
||||
The Home Assistant Cloud has been designed with security in mind. When you activate the Cloud component, your instance will create a secure connection to the Home Assistant Cloud. There is no need for any further configuration or to expose your instance to the internet.
|
||||
|
||||
Integrations like Alexa will deliver messages to our cloud which we will forward to your local instance for processing. We just forward the response back to Alexa. This means that we do not have to store the state of your house in our cloud, we’re just the messenger!
|
||||
Integrations like Alexa or Google will deliver messages to our cloud which we will forward to your local instance for processing. We just forward the response back. This means that we do not have to store the state of your house in our cloud, we’re just the messenger!
|
||||
|
||||
You can find a list of frequently asked questions (and their answers) in [this blog post](/blog/2017/12/17/introducing-home-assistant-cloud/#faq).
|
||||
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 130 KiB |
@ -41,6 +41,14 @@ description: Open-source home automation platform running on Python 3. Track and
|
||||
<a href='/cloud/'>LEARN MORE</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class='material-card text'>
|
||||
<h1>Ok Google, turn on the AC</h1>
|
||||
Use Google Assistant to control Home Assistant.
|
||||
|
||||
<div class='links'>
|
||||
<a href='/cloud/'>LEARN MORE</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a class='material-card highlight-blog-post' href='/blog/2016/01/19/perfect-home-automation/'>
|
||||
Read our founder's vision for the perfect home automation <i class="icon-arrow-right"></i>
|
||||
|
Loading…
x
Reference in New Issue
Block a user