From 6c0d9b08faf4e43d665ebeb871fa140b2d2fb450 Mon Sep 17 00:00:00 2001
From: Paulus Schoutsen
+To update to the latest version, run scripts/update
. Please report any issues on GitHub.
+
+Before diving into the newly supported devices and services, I want to highlight an awesome configuration enhancement by [rmkraus](https://github.com/rmkraus): overwriting entity attributes.
+
+These new configuration settings allow you to overwrite entity state attributes. The main usage for this is being able to overwrite attributes that influence how an entity is shown in the interface.
+
+```yaml
+# Example configuration.yaml entry
+homeassistant:
+ customize:
+ light.bowl:
+ # hides this entity from the interface
+ hidden: true
+ light.ceiling:
+ # Replaces the state badge with given picture
+ entity_picture: http://graph.facebook.com/schoutsen/picture
+```
+
+__MySensors__
+
+[Andythigpen](https://github.com/andythigpen) and [Theolind](https://github.com/theolind) have added support for the [MySensors platform](http://www.mysensors.org) to Home Assistant.
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: mysensors
+ port: /dev/ttyACM0
+```
+
+__OpenWeatherMap__
+
+[Fabaff](https://github.com/fabaff) has contributed support for [OpenWeatherMap](http://openweathermap.org). This will allow you to integrate local meteorological data into Home Assistant.
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: openweathermap
+ api_key: YOUR_API_KEY
+ monitored_variables:
+ - type: 'weather'
+ - type: 'temperature'
+ - type: 'wind_speed'
+ - type: 'humidity'
+ - type: 'pressure'
+ - type: 'clouds'
+ - type: 'rain'
+ - type: 'snow'
+```
+
+__InstaPush__
+
+[Fabaff](https://github.com/fabaff) has contributed support for [InstaPush](https://instapush.im). This will allow you send messages from Home Assistant to your iOS and Android devices.
+
+```yaml
+# Example configuration.yaml entry
+notify:
+ platform: instapush
+ # Get those by creating a new application, event, and tracker on https://instapush.im
+ api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
+ app_secret: ABCDEFGHJKLMNOPQRSTUVXYZ
+ event: ABCDEFGHJKLMNOPQRSTUVXYZ
+ tracker: ABCDEFGHJKLMNOPQRSTUVXYZ
+```
+
+__XMPP__
+
+[Fabaff](https://github.com/fabaff) has contributed support for Jabber/XMPP. This will allow you send messages from Home Assistant to anyone on Jabber/XMPP.
+
+```yaml
+# Example configuration.yaml entry
+notify:
+ platform: xmpp
+ sender: YOUR_JID
+ password: YOUR_JABBER_ACCOUNT_PASSWORD
+ recipient: YOUR_RECIPIENT
+```
+
+__Notify My Android__
+
+[Fabaff](https://github.com/fabaff) has contributed support for [Notify My Android](http://www.notifymyandroid.com/). This will allow you to send messages from Home Assistant to your Android device.
+
+```yaml
+# Example configuration.yaml entry
+notify:
+ platform: nma
+ # Get this by registering a new application on http://www.notifymyandroid.com/
+ api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
+```
+
+__Time & Date sensor__
+[Fabaff](https://github.com/fabaff) has contributed a time & date sensor. This will allow you to show the current time/date on the dashboard.
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: time_date
+ monitored_variables:
+ - type: 'time'
+ - type: 'date'
+ - type: 'date_time'
+ - type: 'time_date'
+```
diff --git a/source/components/device_tracker.ddwrt.markdown b/source/components/device_tracker.ddwrt.markdown
index 45686a57a95..c7b8b00a47e 100644
--- a/source/components/device_tracker.ddwrt.markdown
+++ b/source/components/device_tracker.ddwrt.markdown
@@ -9,7 +9,7 @@ sharing: true
footer: true
---
-
+
This platform offers presence detection by looking at connected devices to a [DD-WRT](http://www.dd-wrt.com/site/index) based router.
```yaml
diff --git a/source/components/device_tracker.netgear.markdown b/source/components/device_tracker.netgear.markdown
index 90256e65d81..dc3b59b2bc9 100644
--- a/source/components/device_tracker.netgear.markdown
+++ b/source/components/device_tracker.netgear.markdown
@@ -9,7 +9,7 @@ sharing: true
footer: true
---
-
+
This platform allows you to detect presence by looking at connected devices to a [Netgear](http://www.netgear.com/) device.
```yaml
diff --git a/source/components/index.markdown b/source/components/index.markdown
index a15c2dc18ec..e0b2d52c007 100644
--- a/source/components/index.markdown
+++ b/source/components/index.markdown
@@ -58,6 +58,12 @@ Entities are things that you want to observe within Home Assistant. Support for
Control WeMo switches and read the usage statistics from Insight switches.
+
+
+
+ MySensors switches
+ Integrate MySensors sensors.
+
DD-WRT routers
@@ -224,7 +230,7 @@ the manufacturers of these devices.
diff --git a/source/components/scheduler.markdown b/source/components/scheduler.markdown
index be8a23338a2..ca78e7521ee 100644
--- a/source/components/scheduler.markdown
+++ b/source/components/scheduler.markdown
@@ -22,3 +22,32 @@ Each schedule is a JSON with the keys `id`, `name`, `description`, `entity_ids`,
effect (can also be groups)
- events is an array of objects that describe the different events that is
supported. Read in the events descriptions for more information
+
+Example `schedule.json`
+
+```json
+[
+ {
+ "id": "window_lamps",
+ "name": "Window lamps",
+ "description": "Turn on window lamps on sunset and turn off at 22:30",
+ "days": [0, 1, 2, 3, 4],
+ "entity_ids": [
+ "group.window_lamps"
+ ],
+ "events": [
+ {
+ "type": "time",
+ "service": "switch.turn_off",
+ "time": "22:30:00"
+ },
+ {
+ "type": "sun",
+ "service": "switch.turn_on",
+ "event": "sunset",
+ "offset": "-00:45:00"
+ }
+ ]
+ }
+]
+```
diff --git a/source/components/sensor.mysensors.markdown b/source/components/sensor.mysensors.markdown
new file mode 100644
index 00000000000..df659179aee
--- /dev/null
+++ b/source/components/sensor.mysensors.markdown
@@ -0,0 +1,20 @@
+---
+layout: page
+title: "MySensors support"
+description: "Instructions how to integrate MySensors into Home Assistant."
+date: 2015-05-14 21:57
+sidebar: false
+comments: false
+sharing: true
+footer: true
+---
+
+
- Time & Date
+Time & Date
Displays the time and the date.
+Integrate your [MySensors sensors](https://www.mysensors.org) by adding the following to your `configuration.yaml`:
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: mysensors
+ port: /dev/ttyACM0
+```
diff --git a/source/components/wink.markdown b/source/components/wink.markdown
index 85b114ac954..bdab22babf3 100644
--- a/source/components/wink.markdown
+++ b/source/components/wink.markdown
@@ -9,6 +9,7 @@ sharing: true
footer: true
---
+
Wink is a home automation hub that can control a whole wide range of devices on the market. Or, as they say in their own words:
Wink offers one, quick and simple way to connect people with the products they rely on every day in their home.
diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown
index 4ee5c2f2b96..d866d5834d1 100644
--- a/source/getting-started/index.markdown
+++ b/source/getting-started/index.markdown
@@ -24,7 +24,7 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
```bash
git clone --recursive https://github.com/balloob/home-assistant.git
cd home-assistant
-python3 -m pip install -r requirements.txt
+python3 -m pip install --user -r requirements.txt
python3 -m homeassistant --open-ui
```
c<`UGV|
zLX$WcremUe3$nOxl<5OiEPc@u_1NszcqJ6~)ecuIC1!2CFF1%y`3sL#1dcEwAh7HF
zY#x}3M>LX4Q-7GC$>t2g=Wa-cZ}yEnka%k>>QENxBT=-UiAsD=nlT~1-p<#g