mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
Blog post for 0.16
This commit is contained in:
parent
27c1f41d7b
commit
c7c938e111
42
source/_components/media_player.yamaha.markdown
Normal file
42
source/_components/media_player.yamaha.markdown
Normal file
@ -0,0 +1,42 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Yamaha Network Receivers"
|
||||
description: "Instructions how to integrate Yamaha Network Receivers into Home Assistant."
|
||||
date: 2016-03-26 0:58 -0700
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: yamaha.png
|
||||
ha_category: Media Player
|
||||
---
|
||||
|
||||
|
||||
The `yamaha` platform allows you to control [Yamaha Network Receivers](http://usa.yamaha.com/products/audio-visual/av-receivers-amps/rx) from Home Assistant.
|
||||
|
||||
Supported devices:
|
||||
|
||||
- HTR-4065
|
||||
- RX-V473
|
||||
- RX-V573
|
||||
- RX-V673
|
||||
- RX-V773
|
||||
- And more
|
||||
|
||||
To add a Yamaha Network Receiver to your installation, add the following to your `configuration.yaml` file:
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
media_player:
|
||||
platform: yamaha
|
||||
name: 'Basement Receiver'
|
||||
```
|
||||
Configuration variables:
|
||||
|
||||
- **name** (*Optional*): Name of the device
|
||||
|
||||
A few notes:
|
||||
|
||||
- This will automatically search your network for Yamaha receivers. It will add a media player device for each one.
|
||||
- Currently the only controls that are available is Power On/Off, Mute, and Volume control. Other functions such as source select are in progress of being developed.
|
||||
|
@ -46,7 +46,16 @@ The MQTT component needs you to run an MQTT broker for Home Assistant to connect
|
||||
|
||||
#### {% linkable_title Use the embedded broker %}
|
||||
|
||||
Home Assistant contains an embedded MQTT broker. If no broker configuration is given, the [HBMQTT broker](https://pypi.python.org/pypi/hbmqtt) is started and Home Asssistant connects to it. Home Assistant assumes that if you have MQTT platforms defined in your `configuration.yml` file that you want to use them and starts the broker as well.
|
||||
Home Assistant contains an embedded MQTT broker. If no broker configuration is given, the [HBMQTT broker](https://pypi.python.org/pypi/hbmqtt) is started and Home Asssistant connects to it. Default settings for the embedded broker:
|
||||
|
||||
| Setting | Value |
|
||||
| ------- | ----- |
|
||||
| Host | localhost
|
||||
| Port | 1883
|
||||
| Version | 3.1
|
||||
| User | homeassistant
|
||||
| Password | Your API password
|
||||
| Websocket port | 8080
|
||||
|
||||
If you want to customize the settings of the embedded broker, use `embedded:` and the values shown in the [HBMQTT Broker configuration](http://hbmqtt.readthedocs.org/en/latest/references/broker.html#broker-configuration).
|
||||
|
||||
|
@ -7,9 +7,8 @@ sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: message_bird.svg
|
||||
logo: message_bird.png
|
||||
ha_category: Notifications
|
||||
featured: true
|
||||
---
|
||||
|
||||
The `MessageBird` notification platform sends notifications as SMS messages using [MessageBird](https://www.messagebird.com/) to your mobile phone.
|
||||
|
@ -9,7 +9,7 @@ sharing: true
|
||||
footer: true
|
||||
logo: uber.png
|
||||
ha_category: Sensor
|
||||
ha_iot_class: "Local Polling"
|
||||
ha_iot_class: "Cloud Polling"
|
||||
---
|
||||
|
||||
|
||||
|
@ -24,6 +24,8 @@ switch:
|
||||
11:
|
||||
name: Fan Office
|
||||
type: digital
|
||||
default: on
|
||||
negate: true
|
||||
12:
|
||||
name: Light Desk
|
||||
type: digital
|
||||
@ -34,6 +36,8 @@ Configuration variables:
|
||||
- **pins** (*Required*): Array of pins to use. The number corresponds with the pin numbering schema of your board.
|
||||
- **name**: Name that will be used in the frontend for the pin.
|
||||
- **type**: The type of the pin. At the moment only 'digital' is supported.
|
||||
- **default**: The initial value for this port.
|
||||
- **negate**: If this pin should be inverted.
|
||||
|
||||
The digital pins are numbered from 0 to 13. The available pins are 2 till 13. For testing purposes you can use pin 13 because with that pin you can control the internal LED.
|
||||
|
||||
|
@ -18,14 +18,6 @@ To get started, add the devices to your `configuration.yaml` file.
|
||||
|
||||
```yaml
|
||||
# Example configuration.yaml entry
|
||||
switch:
|
||||
platform: tellstick
|
||||
|
||||
sensor:
|
||||
platform: tellstick
|
||||
|
||||
# All dimmers will be picked up as lights.
|
||||
light:
|
||||
platform: tellstick
|
||||
tellstick:
|
||||
signal_repetitions: X
|
||||
```
|
||||
|
||||
|
@ -14,8 +14,11 @@ ha_category: Hub
|
||||
|
||||
The [Vera](http://getvera.com) ecosystem is using Z-Wave for communication between the Vera controller and the devices.
|
||||
|
||||
## {% linkable_title Building on top of Vera %}
|
||||
|
||||
- [Vera Sensor](/components/sensor.vera/)
|
||||
- [Vera Switch](/components/switch.vera/)
|
||||
- [Vera Light](/components/light.vera/)
|
||||
```yaml
|
||||
vera:
|
||||
vera_controller_url: http://192.168.1.161:3480/
|
||||
# Optional to exclude devices - this is a list of vera device ids
|
||||
exclude: [ 13, 14, 16, 20, 23, 72, 73, 74, 75, 76, 77, 78, 88, 89, 99]
|
||||
# Optional to import switches as lights - this is a list of vera device ids
|
||||
lights: [15, 17, 19, 21, 22, 24, 26, 43, 64, 70, 87]
|
||||
```
|
||||
|
@ -108,3 +108,14 @@ automation:
|
||||
```
|
||||
|
||||
The *entity_id* and *scene_id* of all triggered events can be seen in the console output.
|
||||
|
||||
#### {% linkable_title Services %}
|
||||
|
||||
The Z-Wave component exposes two services to help maintain the network.
|
||||
|
||||
| Service | Description |
|
||||
| ------- | ----------- |
|
||||
| add_node | |
|
||||
| remove_node | |
|
||||
| heal_network | |
|
||||
| soft_reset | |
|
||||
|
@ -0,0 +1,90 @@
|
||||
---
|
||||
layout: post
|
||||
title: "0.16: Embedded MQTT broker, Uber, Yamaha receivers and Growl"
|
||||
description: "Home Assistant 0.16 has arrived."
|
||||
date: 2016-03-26 0:10:00 -0700
|
||||
date_formatted: "March 26, 2016"
|
||||
author: Paulus Schoutsen
|
||||
author_twitter: balloob
|
||||
comments: true
|
||||
categories: Release-Notes
|
||||
---
|
||||
|
||||
Party people, 0.16 is here! The big thing with this release is that we have completely removed the barrier to get started by MQTT by being able to launch an embedded MQTT server: [hbMQTT]. Just add `mqtt:` to your config and a broker is launched and connected with Home Assistant. See the [documentation][embedded server] for more info.
|
||||
|
||||
Further in this release a bunch of cool new stuff, bug fixes and rewrites for the Vera and Tellstick component (see breaking changes section at bottom for this!).
|
||||
|
||||
Rock on.
|
||||
|
||||
<img src='/images/supported_brands/message_bird.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/pulseaudio.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/uber.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' /><img src='/images/supported_brands/gntp.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='100' /><img src='/images/supported_brands/yamaha.png' style='clear: right; margin-left: 5px; border:none; box-shadow: none; float: right; margin-bottom: 16px;' width='150' />
|
||||
|
||||
- Device Tracker - [OwnTracks]: Allow entry into passive zones using iBeacons ([@pavoni])
|
||||
- Tellstick: rewrite to [component][Tellstick] to address concurrency issues ([@stefan-jonasson])
|
||||
- Z-Wave: add [services][Z-Wave] to heal and soft reset network ([@srcLurker])
|
||||
- New component [input_slider] added ([@persandstrom])
|
||||
- Light - [Hue]: Option added to ignore unreachable property ([@maddox])
|
||||
- Notify: [MessageBird] support added ([@florianholzapfel])
|
||||
- HTTP: Failed login attempts are now logged ([@fabaff])
|
||||
- Vera: rewrite to [component][Vera] to simplify code and organize for reusability ([@pavoni])
|
||||
- Discovery: support for Squeezebox (Logitech media) server added ([@jaharkes])
|
||||
- Discovery: fix uPNP discovery crashing some routers ([@jaharkes])
|
||||
- Switch: [Wake on LAN] platform added ([@joopert])
|
||||
- Services for thermostats, notify and media player will now validate passed in parameters ([@MartinHjelmare])
|
||||
- Switch - [Arduino]: support for default state and negate port functionality ([@tilutza])
|
||||
- Switch: [PulseAudio loopback] now supported ([@Cinntax])
|
||||
- Sensor: [Uber] now supported ([@robbiet480])
|
||||
- Notify: [Growl (GNTP)] now supported ([@robbiet480])
|
||||
- Media Player: [Yamaha receivers] now supported ([@aoakeson])
|
||||
|
||||
[hbMQTT]: https://github.com/beerfactory/hbmqtt
|
||||
[@aoakeson]: https://github.com/aoakeson
|
||||
[@balloob]: https://github.com/balloob
|
||||
[@Cinntax]: https://github.com/Cinntax
|
||||
[@fabaff]: https://github.com/fabaff
|
||||
[@florianholzapfel]: https://github.com/florianholzapfel
|
||||
[@jaharkes]: https://github.com/jaharkes
|
||||
[@joopert]: https://github.com/joopert
|
||||
[@maddox]: https://github.com/maddox
|
||||
[@MartinHjelmare]: https://github.com/MartinHjelmare
|
||||
[@pavoni]: https://github.com/pavoni
|
||||
[@persandstrom]: https://github.com/persandstrom
|
||||
[@robbiet480]: https://github.com/robbiet480
|
||||
[@srcLurker]: https://github.com/srcLurker
|
||||
[@stefan-jonasson]: https://github.com/stefan-jonasson
|
||||
[@tilutza]: https://github.com/tilutza
|
||||
[embedded server]: /components/mqtt/#use-the-embedded-broker
|
||||
[Arduino]: /components/switch.arduino/
|
||||
[Discovery]: /components/discovery/
|
||||
[Growl (GNTP)]: /components/notify.gntp/
|
||||
[Hue]: /components/light.hue/
|
||||
[input_slider]: /components/input_slider/
|
||||
[MessageBird]: /components/notify.message_bird/
|
||||
[OwnTracks]: /components/device_tracker.owntracks/
|
||||
[PulseAudio loopback]: /components/switch.pulseaudio_loopback/
|
||||
[Tellstick]: /components/tellstick/
|
||||
[Uber]: /components/sensor.uber/
|
||||
[Vera]: /components/vera/
|
||||
[Wake on LAN]: /components/switch.wake_on_lan/
|
||||
[Z-Wave]: /components/zwave/#services
|
||||
[Yamaha receivers]: /components/media_player.yamaha/
|
||||
|
||||
### Breaking changes
|
||||
- Automation: support for old deprecated config has been removed
|
||||
|
||||
- Tellstick configuration has changed
|
||||
|
||||
```yaml
|
||||
tellstick:
|
||||
signal_repetitions: X
|
||||
```
|
||||
|
||||
- Vera configuration has changed
|
||||
|
||||
```yaml
|
||||
vera:
|
||||
vera_controller_url: http://192.168.1.161:3480/
|
||||
# Optional to exclude devices - this is a list of vera device ids
|
||||
exclude: [ 13, 14, 16, 20, 23, 72, 73, 74, 75, 76, 77, 78, 88, 89, 99]
|
||||
# Optional to import switches as lights - this is a list of vera device ids
|
||||
lights: [15, 17, 19, 21, 22, 24, 26, 43, 64, 70, 87]
|
||||
```
|
BIN
source/images/supported_brands/message_bird.png
Normal file
BIN
source/images/supported_brands/message_bird.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
@ -1,3 +0,0 @@
|
||||
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="740" height="140" viewBox="0 0 740 140"><style><![CDATA[
|
||||
.st0{fill:#FFFFFF;}
|
||||
]]></style><path class="st0" d="M255.8 99.2V52.8h-.2l-14.2 46.4h-14.7l-14.2-46.4h-.2v46.4h-14.9V38.8h24.8L234 80h.2l11.7-41.3h24.8v60.4h-14.9zm68.8-23.7c0 1.5-.1 4.3-.1 4.3h-32c.3 4.7 4.1 7.9 10.2 7.9 6.2 0 10.4-2.4 13.3-4.7h.7l4.6 11.9c-2.9 2.3-9.5 5.3-18.3 5.3-14.2 0-24.4-9.1-24.4-24.9 0-15.6 10.2-25.5 23.5-25.5 13.5 0 22.5 10.4 22.5 25.7zm-31.6-6h18.5c-.4-3.8-3.8-7.5-9.2-7.5-5.5 0-8.7 3.6-9.3 7.5zm76.9-12.2l-5.1 11.3h-.7c-4.1-4.5-9.8-6.8-14.2-6.8-3.7 0-5.1 1.6-5.1 3.2 0 2.1.8 2.4 11.1 4.9 9.6 2.3 15.9 6 15.9 15.3 0 9.7-6.8 15-18.6 15-11.7 0-20.1-4.4-23.4-7.9l5.4-12.1h.7c4.2 3.5 9.4 6.9 16.8 6.9 4.4 0 5.2-1.2 5.2-2.8 0-1.6-.9-2.5-11.3-5.1-11.2-2.8-15.5-7.3-15.5-14.6 0-9.1 7.3-14.9 18.2-14.9 10.4.1 18.4 5 20.6 7.6zm46.3 0l-5.1 11.3h-.7c-4.1-4.5-9.8-6.8-14.2-6.8-3.7 0-5.1 1.6-5.1 3.2 0 2.1.8 2.4 11.1 4.9 9.6 2.3 15.9 6 15.9 15.3 0 9.7-6.8 15-18.6 15-11.7 0-20.1-4.4-23.4-7.9l5.4-12.1h.7c4.2 3.5 9.4 6.9 16.8 6.9 4.4 0 5.2-1.2 5.2-2.8 0-1.6-.9-2.5-11.3-5.1-11.2-2.8-15.5-7.3-15.5-14.6 0-9.1 7.3-14.9 18.2-14.9 10.5.1 18.5 5 20.6 7.6zm46.6 11.1v30.8h-11.3l-1.2-6.4h-.3c-2.3 4.1-7.1 7.4-13.9 7.4-9.3 0-14.1-6-14.1-13.9s3.6-12.9 14.9-15.1c11.3-2.2 12.1-3 12.1-5.4 0-2.3-2.2-3.6-6.7-3.6-4.9 0-10.4 3.5-13.4 8h-.7l-5.7-11.7c5.3-5.2 12.1-8.7 20.7-8.7 10.9 0 19.6 7.1 19.6 18.6zM449 77.8c-.8 1.3-2.3 2.2-7.4 3.4-4.9 1.2-5.6 2.6-5.6 4.5s1.6 2.8 4.1 2.8c4 0 9.1-2.6 9.1-6.5v-4.2h-.2zm54.1-20.6h.3l.8-6.4h11.2V93c0 14.9-8.4 23.1-23.7 23.1-8.7 0-15.4-2.9-19.5-5.9l4.3-12.3h.7c4.1 3.3 8.5 5.3 14 5.3 7.3 0 9.9-2.9 9.9-9.4v-4.4h-.3c-2.1 3.1-6.2 5.7-12.4 5.7-11.5 0-19.5-9-19.5-21.8 0-14 9.5-23.6 20.7-23.6 6.8.1 11.5 4.1 13.5 7.5zm-19.5 15.7c0 5.9 3.7 9.6 9.3 9.6 5.4 0 9.1-3.4 9.1-9.7 0-6-3.2-10.3-9.1-10.3-6.1 0-9.3 4.5-9.3 10.4zm84.8 2.6c0 1.5-.1 4.3-.1 4.3h-32c.3 4.7 4.1 7.9 10.2 7.9 6.2 0 10.4-2.4 13.3-4.7h.7l4.5 12c-2.9 2.3-9.5 5.3-18.3 5.3-14.2 0-24.4-9.1-24.4-24.9 0-15.6 10.2-25.5 23.5-25.5 13.6-.1 22.6 10.3 22.6 25.6zm-31.6-6h18.5c-.4-3.8-3.8-7.5-9.2-7.5-5.4 0-8.7 3.6-9.3 7.5zm71.7-30.7c11.9 0 18.3 5.8 18.3 15.5 0 6.9-3.2 11.2-9.5 13.9v.2c5.7 2.2 9.5 6.9 9.5 14.7s-4.4 16.1-20.5 16.1h-30.2V38.8h32.4zm-17.1 24.6h14.4c3.6 0 5.6-2.1 5.6-5.2 0-3-1.6-5.4-6.1-5.4h-13.9v10.6zm0 21.8h14.4c3.6 0 5.6-2.1 5.6-5.3s-1.6-5.6-6.1-5.6h-13.9v10.9zm59-49.1c0 5.2-3.2 9-9 9s-9-3.8-9-9c0-5.3 3.2-8.8 9-8.8s9 3.5 9 8.8zm-16.2 63.1V50.8h14.2v48.3h-14.2zm56.2-45.4l-2.1 13h-.7c-1.4-1.5-3.5-2.9-6.6-2.9-5.7 0-9 5.2-9 13.9v21.4h-14.2V50.8h11.7l.8 6.4h.3c2.6-5.2 6.6-7.4 11-7.4 3.4 0 7 1.3 8.8 4zm38.3 45.4l-1.2-6.4h-.3c-2.8 4.4-7 7.4-14.7 7.4-13 0-21.2-10.4-21.2-24.5 0-14.5 8.6-25.9 21.6-25.9 5.7 0 10.4 2.2 13.1 6h.2V35.1H740v64.1h-11.3zm-23.2-24.1c0 7.3 4.2 11.9 10.5 11.9s10.6-4.1 10.6-12c0-7.3-4.2-12.5-10.4-12.5s-10.7 5.3-10.7 12.6zM147.6 24.7c-6.6 0-12.5 3.3-16.1 8.3l-24.3 34c-.9 1.3-2.4 2.1-4 2.1-2.7 0-4.9-2.2-4.9-4.9 0-1 .3-2 .8-2.7l20.5-30.7c2.1-3.1 3.3-6.9 3.3-11 0-10.9-8.8-19.7-19.7-19.7H0v19.7h88.4c0 5.4-4.4 9.9-9.9 9.9H0c0 7 1.5 13.7 4.1 19.7h64.5c0 5.4-4.4 9.9-9.9 9.9H9.9c9 12 23.3 19.7 39.5 19.7h24.3c2.7 0 4.9 2.2 4.9 4.9s-2.2 4.9-4.9 4.9H49.3l-33 49.3H76c27.3 0 50.5-17.8 58.6-42.4L145.7 62c3.6-10.9 10.2-20.5 18.8-27.8-3.4-5.7-9.7-9.5-16.9-9.5zm0 13.5c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7 3.7 1.7 3.7 3.7c0 2.1-1.7 3.7-3.7 3.7z"/></svg>
|
Before Width: | Height: | Size: 3.3 KiB |
BIN
source/images/supported_brands/yamaha.png
Normal file
BIN
source/images/supported_brands/yamaha.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
x
Reference in New Issue
Block a user