diff --git a/source/_components/media_player.yamaha.markdown b/source/_components/media_player.yamaha.markdown
new file mode 100644
index 00000000000..9888cf684bf
--- /dev/null
+++ b/source/_components/media_player.yamaha.markdown
@@ -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.
+
diff --git a/source/_components/mqtt.markdown b/source/_components/mqtt.markdown
index 44bf80f8ba2..614af9061f8 100644
--- a/source/_components/mqtt.markdown
+++ b/source/_components/mqtt.markdown
@@ -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).
diff --git a/source/_components/notify.message_bird.markdown b/source/_components/notify.message_bird.markdown
index e8b35e0cdce..82209bda957 100644
--- a/source/_components/notify.message_bird.markdown
+++ b/source/_components/notify.message_bird.markdown
@@ -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.
diff --git a/source/_components/sensor.uber.markdown b/source/_components/sensor.uber.markdown
index 62e735c80b8..6b1dee6a78e 100644
--- a/source/_components/sensor.uber.markdown
+++ b/source/_components/sensor.uber.markdown
@@ -9,7 +9,7 @@ sharing: true
footer: true
logo: uber.png
ha_category: Sensor
-ha_iot_class: "Local Polling"
+ha_iot_class: "Cloud Polling"
---
diff --git a/source/_components/switch.arduino.markdown b/source/_components/switch.arduino.markdown
index b2a1b7ef5cd..c888d85d71a 100644
--- a/source/_components/switch.arduino.markdown
+++ b/source/_components/switch.arduino.markdown
@@ -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.
diff --git a/source/_components/tellstick.markdown b/source/_components/tellstick.markdown
index edca85a85b2..f0474c47575 100644
--- a/source/_components/tellstick.markdown
+++ b/source/_components/tellstick.markdown
@@ -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
```
-
diff --git a/source/_components/vera.markdown b/source/_components/vera.markdown
index 782ca02cb7d..50167fd0d4a 100644
--- a/source/_components/vera.markdown
+++ b/source/_components/vera.markdown
@@ -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]
+```
diff --git a/source/_components/zwave.markdown b/source/_components/zwave.markdown
index d4d33d4d3cd..5e1d15f7b18 100644
--- a/source/_components/zwave.markdown
+++ b/source/_components/zwave.markdown
@@ -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 | |
diff --git a/source/_posts/2016-03-26-embedded-mqtt-broker-uber-yamaha-growl.markdown b/source/_posts/2016-03-26-embedded-mqtt-broker-uber-yamaha-growl.markdown
new file mode 100644
index 00000000000..1a325f9a243
--- /dev/null
+++ b/source/_posts/2016-03-26-embedded-mqtt-broker-uber-yamaha-growl.markdown
@@ -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.
+
+
+
+ - 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]
+```
diff --git a/source/images/supported_brands/message_bird.png b/source/images/supported_brands/message_bird.png
new file mode 100644
index 00000000000..1beab0c385c
Binary files /dev/null and b/source/images/supported_brands/message_bird.png differ
diff --git a/source/images/supported_brands/message_bird.svg b/source/images/supported_brands/message_bird.svg
deleted file mode 100644
index 53acf93d22a..00000000000
--- a/source/images/supported_brands/message_bird.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/source/images/supported_brands/yamaha.png b/source/images/supported_brands/yamaha.png
new file mode 100644
index 00000000000..6ae38e57fed
Binary files /dev/null and b/source/images/supported_brands/yamaha.png differ