diff --git a/_deploy b/_deploy index 853a81fe69..aaa26e2e2b 160000 --- a/_deploy +++ b/_deploy @@ -1 +1 @@ -Subproject commit 853a81fe69bcc1acff5492e200a6ab9944b86af2 +Subproject commit aaa26e2e2bd352fcb015330314ea9176292f5c80 diff --git a/source/_includes/custom/navigation.html b/source/_includes/custom/navigation.html index 5e0ca25935..06d049a284 100644 --- a/source/_includes/custom/navigation.html +++ b/source/_includes/custom/navigation.html @@ -24,5 +24,5 @@
+To update to the latest version, run scripts/update. Please report any issues on GitHub.
+
+Fabian has contributed support for interfacing with Arduinos. This makes it possible to connect your Arduino via USB and expose pins as sensor data and write to pins via switches. Have a look at [the docs](/components/arduino.markdown) for an extensive guide to get started.
+
+```yaml
+# Example configuration.yaml entry
+switch:
+ platform: arduino
+ pins:
+ 11:
+ name: Fan Office
+ type: digital
+ 12:
+ name: Light Desk
+ type: digital
+
+sensor:
+ platform: arduino
+ pins:
+ 1:
+ name: Door switch
+ type: analog
+ 0:
+ name: Brightness
+ type: analog
+```
+
+__Kodi (XBMC)__
+Ettisan has contributed a Kodi (XBMC) platform for the media player component. This allows you to track all the media that you are playing and allow you to control it.
+
+```
+# Example configuration.yaml entry
+media_player:
+ platform: kodi
+ name: Kodi
+ url: http://192.168.0.123/jsonrpc
+ user: kodi
+ password: my_secure_password
+```
+
+__TP-Link__
+Michael has added TP-Link support to the device tracker. This allows you to now detect presence if you have a TP-Link router.
+
+```yaml
+# Example configuration.yaml entry
+device_tracker:
+ platform: tplink
+ host: YOUR_ROUTER_IP
+ username: YOUR_ADMIN_USERNAME
+ password: YOUR_ADMIN_PASSWORD
+```
+
+__Efergy energy monitor__
+Miniconfig has contributed support for the [Efergy energy meters](https://efergy.com). To get an app token, log in to your efergy account, go to the Settings page, click on App tokens, and click "Add token".
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: efergy
+ app_token: APP_TOKEN
+ utc_offset: UTC_OFFSET
+ monitored_variables:
+ - type: instant_readings
+ - type: budget
+ - type: cost
+ period: day
+ currency: $
+```
+
+__Forecast.io__
diff --git a/source/components/sensor.efergy.markdown b/source/components/sensor.efergy.markdown
new file mode 100644
index 0000000000..7886ef0e45
--- /dev/null
+++ b/source/components/sensor.efergy.markdown
@@ -0,0 +1,27 @@
+---
+layout: page
+title: "Efergy support"
+description: "Instructions how to integrate Efergy devices within Home Assistant."
+date: 2015-07-11 0:15
+sidebar: false
+comments: false
+sharing: true
+footer: true
+---
+
+
+Integrate your [Efergy](https://efergy.com) meter information into Home Assistant. To get an app token, log in to your efergy account, go to the Settings page, click on App tokens, and click "Add token".
+
+```yaml
+# Example configuration.yaml entry
+sensor:
+ platform: efergy
+ app_token: APP_TOKEN
+ utc_offset: UTC_OFFSET
+ monitored_variables:
+ - type: instant_readings
+ - type: budget
+ - type: cost
+ period: day
+ currency: $
+```
diff --git a/source/demo/manifest.json b/source/demo/manifest.json
index 69143ce517..4454a923df 100644
--- a/source/demo/manifest.json
+++ b/source/demo/manifest.json
@@ -1,7 +1,7 @@
{
"name": "Home Assistant",
"short_name": "Assistant",
- "start_url": "/",
+ "start_url": "/demo/",
"display": "standalone",
"icons": [
{
diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown
index d230dd379c..73494570e2 100644
--- a/source/getting-started/index.markdown
+++ b/source/getting-started/index.markdown
@@ -25,7 +25,6 @@ Installing and running Home Assistant on your local machine is easy. Make sure y
git clone --recursive https://github.com/balloob/home-assistant.git
python3 -m venv home-assistant
cd home-assistant
-python3 -m pip install -r requirements.txt
python3 -m homeassistant --open-ui
```
Then add these lines to the end of the file and save:
``` export PATH="$HOME/.pyenv/bin:$PATH" @@ -122,11 +121,6 @@ cd home-assistant pyenv local homeassistant ``` -Step 6. Finish the install
-```bash -python3 -m pip install -r requirements.txt -``` -Step 7. Start it up
```bash python3 -m homeassistant diff --git a/source/help/help.markdown b/source/help/index.markdown similarity index 100% rename from source/help/help.markdown rename to source/help/index.markdown diff --git a/source/images/supported_brands/efergy.png b/source/images/supported_brands/efergy.png new file mode 100644 index 0000000000..4d1c1673cd Binary files /dev/null and b/source/images/supported_brands/efergy.png differ