diff --git a/atom.xml b/atom.xml index 6b3c929e8c..7c4160ade7 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ @@ -13,6 +13,207 @@ Octopress + + <![CDATA[IP Cameras, Arduinos, Kodi and Efergy Energy Monitors now supported]]> + + 2015-07-11T01:37:00-07:00 + https://home-assistant.io/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support + Another month has passed and some great new features have landed in Home Assistant. This month release has been made possible by balloob, ettisan, fabaff, gyran, jamespcole, michaelarnauts, miniconfig and rmkraus.

+ +

This release includes some architectural changes by me. The first is that the frontend is now based on a NuclearJS JavaScript backend. This has greatly helped to organize and optimize the frontend code. Another change is that Home Assistant will now install dependencies on-demand instead of installing dependencies for all supported devices.

+ +

IP Camera Support
+James has worked very hard to add support for IP cameras to Home Assistant which is included in this release. The initial release focusses on providing generic IP camera support. This means that any webcam that can exposes a JPEG image via a url can be integrated.

+ +

Home Assistant will route the requests to your camera via the server allowing you to expose IP camera’s inside your network via the Home Assistant app.

+ +
1
+2
+3
+4
+5
+6
+7
+
# Example configuration.yaml entry
+camera:
+  platform: generic
+  name: my sample camera
+  username: MY_USERNAME
+  password: MY_PASSWORD
+  still_image_url: http://194.218.96.92/jpg/image.jpg
+
+ + + + +

+To update to the latest version, run scripts/update. Please report any issues on GitHub. +

+ + + + + + + +

Arduino
+ +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 for an extensive guide to get started.

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+
# 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.

+ +
1
+2
+3
+4
+5
+6
+7
+
# 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.

+ +
1
+2
+3
+4
+5
+6
+
# 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. To get an app token, log in to your efergy account, go to the Settings page, click on App tokens, and click “Add token”.

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+
# 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
+Fabiann has added support for Forecast.io to get weather forecasts for Home Assistant. You need an API key which is free but requires a registration. To add Forecast.io to your installation, add the following to your configuration.yaml file:

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+
# Example configuration.yaml entry
+sensor:
+  platform: forecast
+  api_key: YOUR_APP_KEY
+  monitored_conditions:
+    - summary
+    - precip_type
+    - precip_intensity
+    - temperature
+    - dew_point
+    - wind_speed
+    - wind_bearing
+    - cloud_cover
+    - humidity
+    - pressure
+    - visibility
+    - ozone
+
+ +]]>
+
+ <![CDATA[Release notes for June 10, 2015]]> diff --git a/blog/2014/12/18/website-launched/index.html b/blog/2014/12/18/website-launched/index.html index af5fb81d14..83ea4a1795 100644 --- a/blog/2014/12/18/website-launched/index.html +++ b/blog/2014/12/18/website-launched/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -213,6 +213,12 @@ diff --git a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html index 27294c8084..c10dda52b2 100644 --- a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html +++ b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -275,6 +275,12 @@ This article will try to explain how they all relate.

    diff --git a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html index 9470674a52..cf387f94db 100644 --- a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html +++ b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -257,6 +257,12 @@ diff --git a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html index 83cac50d89..8de629a921 100644 --- a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html +++ b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -225,6 +225,12 @@ diff --git a/blog/2015/01/13/nest-in-da-house/index.html b/blog/2015/01/13/nest-in-da-house/index.html index 2d37bafa08..2a362af5d3 100644 --- a/blog/2015/01/13/nest-in-da-house/index.html +++ b/blog/2015/01/13/nest-in-da-house/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -232,6 +232,12 @@ diff --git a/blog/2015/01/24/release-notes/index.html b/blog/2015/01/24/release-notes/index.html index 6d11fab7fb..eaeaef2155 100644 --- a/blog/2015/01/24/release-notes/index.html +++ b/blog/2015/01/24/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -237,6 +237,12 @@ Home Assistant now supports --open-ui and --demo-mode diff --git a/blog/2015/02/08/looking-at-the-past/index.html b/blog/2015/02/08/looking-at-the-past/index.html index 913d899c81..38ff937a59 100644 --- a/blog/2015/02/08/looking-at-the-past/index.html +++ b/blog/2015/02/08/looking-at-the-past/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -255,6 +255,12 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D diff --git a/blog/2015/02/24/streaming-updates/index.html b/blog/2015/02/24/streaming-updates/index.html index a25e3cb0cf..1aadb2f2d3 100644 --- a/blog/2015/02/24/streaming-updates/index.html +++ b/blog/2015/02/24/streaming-updates/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -233,6 +233,12 @@ diff --git a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html index 8e886780e1..b965e88e40 100644 --- a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html +++ b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -220,6 +220,12 @@ YAML allows the use of lists, which should make the configuration file a bit mor diff --git a/blog/2015/03/08/new-logo/index.html b/blog/2015/03/08/new-logo/index.html index 98faa0f3c9..000fb5111c 100644 --- a/blog/2015/03/08/new-logo/index.html +++ b/blog/2015/03/08/new-logo/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -221,6 +221,12 @@ The old logo, the new detailed logo and the new simple logo. diff --git a/blog/2015/03/11/release-notes/index.html b/blog/2015/03/11/release-notes/index.html index 7b53cd0720..c99ae92c10 100644 --- a/blog/2015/03/11/release-notes/index.html +++ b/blog/2015/03/11/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -267,6 +267,12 @@ An initial version of voice control for Home Assistant has landed. The current i diff --git a/blog/2015/03/22/release-notes/index.html b/blog/2015/03/22/release-notes/index.html index 1a27004b53..03362f2bb9 100644 --- a/blog/2015/03/22/release-notes/index.html +++ b/blog/2015/03/22/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -340,6 +340,12 @@ James Cole has also contributed support for the diff --git a/blog/2015/04/25/release-notes/index.html b/blog/2015/04/25/release-notes/index.html index c7b366fd42..343a471b9e 100644 --- a/blog/2015/04/25/release-notes/index.html +++ b/blog/2015/04/25/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -356,6 +356,12 @@ James has also contributed support for integrating Transmission into Home Assist diff --git a/blog/2015/05/09/utc-time-zone-awareness/index.html b/blog/2015/05/09/utc-time-zone-awareness/index.html index 6c7ba3dfcc..c398b2d4d3 100644 --- a/blog/2015/05/09/utc-time-zone-awareness/index.html +++ b/blog/2015/05/09/utc-time-zone-awareness/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -245,6 +245,12 @@ diff --git a/blog/2015/05/14/release-notes/index.html b/blog/2015/05/14/release-notes/index.html index bf521b3c32..7a4090ce98 100644 --- a/blog/2015/05/14/release-notes/index.html +++ b/blog/2015/05/14/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -382,6 +382,12 @@ Before diving into the newly supported devices and services, I want to highlight diff --git a/blog/2015/06/10/release-notes/index.html b/blog/2015/06/10/release-notes/index.html index 861c234651..8f1d6310e5 100644 --- a/blog/2015/06/10/release-notes/index.html +++ b/blog/2015/06/10/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -461,6 +461,12 @@ This switch platform allows you to control your motion detection setting on your diff --git a/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html new file mode 100644 index 0000000000..1967013b35 --- /dev/null +++ b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html @@ -0,0 +1,500 @@ + + + + + + + + + + + + IP Cameras, Arduinos, Kodi and Efergy Energy Monitors now supported - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + +
    + + +
    +
    + +

    IP Cameras, Arduinos, Kodi and Efergy Energy Monitors now supported

    + + + +
    + + + + + + + + + + + + + + + + + + + five minutes reading time + + + + + + + + + Comments + +
    + +
    + + + + +

    Another month has passed and some great new features have landed in Home Assistant. This month release has been made possible by balloob, ettisan, fabaff, gyran, jamespcole, michaelarnauts, miniconfig and rmkraus.

    + +

    This release includes some architectural changes by me. The first is that the frontend is now based on a NuclearJS JavaScript backend. This has greatly helped to organize and optimize the frontend code. Another change is that Home Assistant will now install dependencies on-demand instead of installing dependencies for all supported devices.

    + +

    IP Camera Support
    +James has worked very hard to add support for IP cameras to Home Assistant which is included in this release. The initial release focusses on providing generic IP camera support. This means that any webcam that can exposes a JPEG image via a url can be integrated.

    + +

    Home Assistant will route the requests to your camera via the server allowing you to expose IP camera’s inside your network via the Home Assistant app.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +
    # Example configuration.yaml entry
    +camera:
    +  platform: generic
    +  name: my sample camera
    +  username: MY_USERNAME
    +  password: MY_PASSWORD
    +  still_image_url: http://194.218.96.92/jpg/image.jpg
    +
    + + + + +

    +To update to the latest version, run scripts/update. Please report any issues on GitHub. +

    + + + + + + + +

    Arduino
    + +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 for an extensive guide to get started.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +
    # 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.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +
    # 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.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +
    # 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. To get an app token, log in to your efergy account, go to the Settings page, click on App tokens, and click “Add token”.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +
    # 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
    +Fabiann has added support for Forecast.io to get weather forecasts for Home Assistant. You need an API key which is free but requires a registration. To add Forecast.io to your installation, add the following to your configuration.yaml file:

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +
    # Example configuration.yaml entry
    +sensor:
    +  platform: forecast
    +  api_key: YOUR_APP_KEY
    +  monitored_conditions:
    +    - summary
    +    - precip_type
    +    - precip_intensity
    +    - temperature
    +    - dew_point
    +    - wind_speed
    +    - wind_bearing
    +    - cloud_cover
    +    - humidity
    +    - pressure
    +    - visibility
    +    - ozone
    +
    + + + +
    + + +
    +

    Comments

    +
    +
    +
    + + +
    + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/archives/index.html b/blog/archives/index.html index 9cddb1a926..8fedf2a0a8 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -22,7 +22,7 @@ - + @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -115,6 +115,43 @@ + + + +
    + +
    @@ -767,6 +804,12 @@ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 95cfe8a842..adb698d90c 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/index.html b/blog/categories/architecture/index.html index f4a8582425..9504e0d518 100644 --- a/blog/categories/architecture/index.html +++ b/blog/categories/architecture/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -207,6 +207,12 @@ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index 9c2cbd7660..d9019dcbc9 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: branding | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/branding/index.html b/blog/categories/branding/index.html index 3239a0ac64..6eecf8a1a1 100644 --- a/blog/categories/branding/index.html +++ b/blog/categories/branding/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -207,6 +207,12 @@ diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index f855eb3545..570ff83303 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/component/index.html b/blog/categories/component/index.html index 30ac864174..d915e5155f 100644 --- a/blog/categories/component/index.html +++ b/blog/categories/component/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -320,6 +320,12 @@ diff --git a/blog/categories/core/atom.xml b/blog/categories/core/atom.xml index 326d2df412..aedf56d043 100644 --- a/blog/categories/core/atom.xml +++ b/blog/categories/core/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: core | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/core/index.html b/blog/categories/core/index.html index 4e338ee0db..c91d35f5cc 100644 --- a/blog/categories/core/index.html +++ b/blog/categories/core/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -244,6 +244,12 @@ diff --git a/blog/categories/frontend/atom.xml b/blog/categories/frontend/atom.xml index 0ad080d438..e6b5cb9e20 100644 --- a/blog/categories/frontend/atom.xml +++ b/blog/categories/frontend/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: frontend | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/frontend/index.html b/blog/categories/frontend/index.html index 3ca8e89f59..7bb3023097 100644 --- a/blog/categories/frontend/index.html +++ b/blog/categories/frontend/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -246,6 +246,12 @@ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index eb95063d26..33942f84d9 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: release-notes | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ @@ -13,6 +13,131 @@ Octopress + + <![CDATA[IP Cameras, Arduinos, Kodi and Efergy Energy Monitors now supported]]> + + 2015-07-11T01:37:00-07:00 + https://home-assistant.io/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support + Another month has passed and some great new features have landed in Home Assistant. This month release has been made possible by balloob, ettisan, fabaff, gyran, jamespcole, michaelarnauts, miniconfig and rmkraus.

    + +

    This release includes some architectural changes by me. The first is that the frontend is now based on a NuclearJS JavaScript backend. This has greatly helped to organize and optimize the frontend code. Another change is that Home Assistant will now install dependencies on-demand instead of installing dependencies for all supported devices.

    + +

    IP Camera Support
    +James has worked very hard to add support for IP cameras to Home Assistant which is included in this release. The initial release focusses on providing generic IP camera support. This means that any webcam that can exposes a JPEG image via a url can be integrated.

    + +

    Home Assistant will route the requests to your camera via the server allowing you to expose IP camera’s inside your network via the Home Assistant app.

    + +
    # Example configuration.yaml entry
    +camera:
    +  platform: generic
    +  name: my sample camera
    +  username: MY_USERNAME
    +  password: MY_PASSWORD
    +  still_image_url: http://194.218.96.92/jpg/image.jpg
    +
    + +

    +To update to the latest version, run scripts/update. Please report any issues on GitHub. +

    + + + + + + + +

    Arduino
    + +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 for an extensive guide to get started.

    + +
    # 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.

    + +
    # 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. To get an app token, log in to your efergy account, go to the Settings page, click on App tokens, and click “Add token”.

    + +
    # 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
    +Fabiann has added support for Forecast.io to get weather forecasts for Home Assistant. You need an API key which is free but requires a registration. To add Forecast.io to your installation, add the following to your configuration.yaml file:

    + +
    # Example configuration.yaml entry
    +sensor:
    +  platform: forecast
    +  api_key: YOUR_APP_KEY
    +  monitored_conditions:
    +    - summary
    +    - precip_type
    +    - precip_intensity
    +    - temperature
    +    - dew_point
    +    - wind_speed
    +    - wind_bearing
    +    - cloud_cover
    +    - humidity
    +    - pressure
    +    - visibility
    +    - ozone
    +
    +]]>
    +
    + <![CDATA[Release notes for June 10, 2015]]> @@ -479,52 +604,6 @@ notify: # Get this by logging into your account on https://pushover.net user_key: ABCDEFGHJKLMNOPQRSTUVXYZ -]]> - - - - <![CDATA[Release notes for March 11, 2015]]> - - 2015-03-11T18:36:00-08:00 - https://home-assistant.io/blog/2015/03/11/release-notes - It has only been a little over a week since Theodor introduced YAML support for Home Assistant but so much has already happened that it is time for a summary of recent changes. Before mentioning the highlights I want to thank andythigpen, jamespcole and theolind for numerous bug fixes, enhancements and new contributions. Thanks!

    - -

    Monitor local resources.
    -Theodor has contributed a new sensor platform to allow you to monitor disk usage, memory usage, CPU usage and running processes. This platform has superseded the process component which is now considered deprecated.

    - -
    # Example configuration.yaml entry
    -sensor:
    -  - platform: systemmonitor
    -    resources:
    -      - type: disk_use_percent
    -        arg: /home
    -      - type: memory_free
    -      - type: process
    -        arg: kodi
    -
    - -

    Experimental Z-Wave support
    -There is now experimental support for connecting Z-Wave networks using a Z-Wave USB stick. Right now it only integrates Z-Wave sensors into Home Assistant. Our goal is to get this tested by more people before adding support for other Z-Wave devices.

    - -

    The new component is built on top of python-openzwave. This package is currently not distributed on PyPi so we’ve added a script scripts/build_python_openzwave to install it on your machine. Alternatively you can use the Docker image which is ready to go.

    - -

    The development was done using an AEON Z-Wave USB stick and an AEON Z-Wave MultiSensor.

    - -
    # Example configuration.yaml entry
    -zwave:
    -  usb_path: /dev/ttyUSB0
    -
    - -

    Voice control
    -An initial version of voice control for Home Assistant has landed. The current implementation consists of two parts.

    - -

    The first part is a component called conversation that exposes the service conversation/process. This service is capable of processing text and translating them into commands for devices. For now it will only support commands in the format of Turn <Friendly Name> <on/off>.

    - -

    The second part is an upgrade to the frontend to use the speech-to-text in Chrome to allow users to speak commands. If you’re using Chrome, you can test this out in the demo.

    - -
    # Example configuration.yaml entry
    -conversation:
    -
    ]]>
    diff --git a/blog/categories/release-notes/index.html b/blog/categories/release-notes/index.html index efa22fce58..15d3c6d2a1 100644 --- a/blog/categories/release-notes/index.html +++ b/blog/categories/release-notes/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -115,6 +115,43 @@ + + + +
    + +
    @@ -392,6 +429,12 @@ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 52014b27c6..b0c0cffe9c 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 https://home-assistant.io/ diff --git a/blog/categories/website/index.html b/blog/categories/website/index.html index 7ffacddb14..f453ced5f5 100644 --- a/blog/categories/website/index.html +++ b/blog/categories/website/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -207,6 +207,12 @@ diff --git a/blog/index.html b/blog/index.html index 827bb5f442..92540f630a 100644 --- a/blog/index.html +++ b/blog/index.html @@ -22,7 +22,7 @@ - + @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -97,6 +97,104 @@ +
    +
    + +

    + IP Cameras, Arduinos, Kodi and Efergy Energy Monitors now supported +

    + + + +
    + + + + + + + + + + + + + + + + + + + five minutes reading time + + + + + + + + + Comments + +
    + +
    + + + + +
    +

    Another month has passed and some great new features have landed in Home Assistant. This month release has been made possible by balloob, ettisan, fabaff, gyran, jamespcole, michaelarnauts, miniconfig and rmkraus.

    + +

    This release includes some architectural changes by me. The first is that the frontend is now based on a NuclearJS JavaScript backend. This has greatly helped to organize and optimize the frontend code. Another change is that Home Assistant will now install dependencies on-demand instead of installing dependencies for all supported devices.

    + +

    IP Camera Support
    +James has worked very hard to add support for IP cameras to Home Assistant which is included in this release. The initial release focusses on providing generic IP camera support. This means that any webcam that can exposes a JPEG image via a url can be integrated.

    + +

    Home Assistant will route the requests to your camera via the server allowing you to expose IP camera’s inside your network via the Home Assistant app.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +
    # Example configuration.yaml entry
    +camera:
    +  platform: generic
    +  name: my sample camera
    +  username: MY_USERNAME
    +  password: MY_PASSWORD
    +  still_image_url: http://194.218.96.92/jpg/image.jpg
    +
    + + + + +

    +To update to the latest version, run scripts/update. Please report any issues on GitHub. +

    + + + + + + Read on → +
    + +
    +
    + +
    @@ -880,101 +978,6 @@ YAML allows the use of lists, which should make the configuration file a bit mor

    - -
    -
    - -

    - Looking at the past -

    - - - -
    - - - - - - - - - - - - - - - - - - - 1 minute reading time - - - - - - - - - Comments - -
    - -
    - - - - -
    -

    Ever since the launch of Home Assistant you have been able to track the state of your house. But the view has always been limited to what the current state is. Not what it was. Today we are going to change that by introducing two brand new components:

    - -
      -
    • Recorder component that will record every event to a SQLite database
    • -
    • History component that will query and aggregate the recorded events
    • -
    - - -

    By adding this view into the past, we are adding an extra dimension into the state of your house. This brings great new possibilities for future features. The focus of todays release is on getting the recording component to you to start recording and getting some data. To show what is being recorded a view has been added that shows the last 24 hours of your house. Expect more extensive tools to explore your history in the future.

    - -

    Adding history to the UI was a challenge on itself because the old UI did not support easy navigation. So to add to the awesomeness of this release, Home Assistant also got a face lift.

    - -

    The history component will be enabled for new users by default. For current users, run scripts/update to upgrade to the latest version and add [history] to your home-assistant.conf file.

    - -

    - - - -

    - - - - -

    -Events are saved in a local database. Google Graphs is used to draw the graph. Drawing is happening 100% in your browser - no data is transfered to anyone at any time. -

    - - - - - - Read on → -
    - -
    -
    - @@ -158,6 +160,12 @@ assume it is as a sensor.

    hidden on Home Assistant’s front page. This string will be stripped from the device’s name before being used. By default, this value is ‘{HIDE ME}’.

    +

    The TLS_VERSION value is the version of TLS that the ISY controller is using +for HTTPS encryption. This value can be either 1.1 or 1.2. If this value is not +set, it is assumed to be version 1.1. This is the default for most users. +ISY994 Pro users may likely be using 1.2. When using HTTPS in the ISY_ADDRESS +string, it is best practice to set this value.

    +

    Once the ISY controller is configured, it will automatically import any lights, switches, and sensors it can locate.

    diff --git a/components/keyboard.html b/components/keyboard.html index e5227f9b59..3930220159 100644 --- a/components/keyboard.html +++ b/components/keyboard.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/light.html b/components/light.html index c311ca8520..9d478a9a44 100644 --- a/components/light.html +++ b/components/light.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/light.hue.html b/components/light.hue.html index 111415bca8..22105cc35f 100644 --- a/components/light.hue.html +++ b/components/light.hue.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/light.limitlessled.html b/components/light.limitlessled.html index 5ec2180205..4a2d97ca27 100644 --- a/components/light.limitlessled.html +++ b/components/light.limitlessled.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/logbook.html b/components/logbook.html index 0cc222994a..755cadfe67 100644 --- a/components/logbook.html +++ b/components/logbook.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/media_player.cast.html b/components/media_player.cast.html index f7b27210a5..9d826a8e07 100644 --- a/components/media_player.cast.html +++ b/components/media_player.cast.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/media_player.html b/components/media_player.html index 6ec5dbd925..ea0fccfd38 100644 --- a/components/media_player.html +++ b/components/media_player.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/media_player.kodi.html b/components/media_player.kodi.html index 1a70e0dbc5..cb44b6654b 100644 --- a/components/media_player.kodi.html +++ b/components/media_player.kodi.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/media_player.mpd.html b/components/media_player.mpd.html index 20badf1feb..71c7a9ea84 100644 --- a/components/media_player.mpd.html +++ b/components/media_player.mpd.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/modbus.html b/components/modbus.html index 7e11968129..ad0f232ccc 100644 --- a/components/modbus.html +++ b/components/modbus.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.file.html b/components/notify.file.html index 674e7c151b..081eaa5282 100644 --- a/components/notify.file.html +++ b/components/notify.file.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.html b/components/notify.html index ca06aa6497..3e50832762 100644 --- a/components/notify.html +++ b/components/notify.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.instapush.html b/components/notify.instapush.html index 934c3cbf42..b91cb2d5c3 100644 --- a/components/notify.instapush.html +++ b/components/notify.instapush.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.nma.html b/components/notify.nma.html index beceab9cf7..870013c2da 100644 --- a/components/notify.nma.html +++ b/components/notify.nma.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.pushbullet.html b/components/notify.pushbullet.html index 9d8c936f36..f0c8eb962d 100644 --- a/components/notify.pushbullet.html +++ b/components/notify.pushbullet.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.pushover.html b/components/notify.pushover.html index 2dae983788..5606844a69 100644 --- a/components/notify.pushover.html +++ b/components/notify.pushover.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.smtp.html b/components/notify.smtp.html index bde7dc7831..c8439f4f2a 100644 --- a/components/notify.smtp.html +++ b/components/notify.smtp.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.syslog.html b/components/notify.syslog.html index 630b6eda2b..3f71ca23d6 100644 --- a/components/notify.syslog.html +++ b/components/notify.syslog.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/notify.xmpp.html b/components/notify.xmpp.html index 9ef5c74388..60006f45cf 100644 --- a/components/notify.xmpp.html +++ b/components/notify.xmpp.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/scene.html b/components/scene.html index 5e153a4223..8a700dc9ad 100644 --- a/components/scene.html +++ b/components/scene.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/scheduler.html b/components/scheduler.html index 8c2d0c79b9..e721fe13cf 100644 --- a/components/scheduler.html +++ b/components/scheduler.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/script.html b/components/script.html index 48550e2d9b..afbe4ca2b0 100644 --- a/components/script.html +++ b/components/script.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.bitcoin.html b/components/sensor.bitcoin.html index 0f9e672f87..8fe5353943 100644 --- a/components/sensor.bitcoin.html +++ b/components/sensor.bitcoin.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.efergy.html b/components/sensor.efergy.html new file mode 100644 index 0000000000..ecc2c111c4 --- /dev/null +++ b/components/sensor.efergy.html @@ -0,0 +1,179 @@ + + + + + + + + + + + + Efergy support - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + +
    + + +
    + + +
    +

    + Efergy Support +

    +
    +
    + + +

    +Integrate your Efergy 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”.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +
    # 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: $
    +
    + + + +
    + + +
    + + +
    +
    + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/components/sensor.forecast.html b/components/sensor.forecast.html index fc0064e291..80b1da4ac3 100644 --- a/components/sensor.forecast.html +++ b/components/sensor.forecast.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.mysensors.html b/components/sensor.mysensors.html index dc7a8c37cf..e95eec8ead 100644 --- a/components/sensor.mysensors.html +++ b/components/sensor.mysensors.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.openweathermap.html b/components/sensor.openweathermap.html index 569f103ae2..e7b7e2d6d6 100644 --- a/components/sensor.openweathermap.html +++ b/components/sensor.openweathermap.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.sabnzbd.html b/components/sensor.sabnzbd.html index c9002977cc..5e0413ba4b 100644 --- a/components/sensor.sabnzbd.html +++ b/components/sensor.sabnzbd.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.swiss_public_transport.html b/components/sensor.swiss_public_transport.html index 63654105b2..7ae2dc25dd 100644 --- a/components/sensor.swiss_public_transport.html +++ b/components/sensor.swiss_public_transport.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.systemmonitor.html b/components/sensor.systemmonitor.html index 6d560b6798..ec76df0912 100644 --- a/components/sensor.systemmonitor.html +++ b/components/sensor.systemmonitor.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.time_date.html b/components/sensor.time_date.html index 860740ebe3..51920c6ac7 100644 --- a/components/sensor.time_date.html +++ b/components/sensor.time_date.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sensor.transmission.html b/components/sensor.transmission.html index e0425491eb..b438429a1b 100644 --- a/components/sensor.transmission.html +++ b/components/sensor.transmission.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/simple_alarm.html b/components/simple_alarm.html index 07e53c4f1e..c579534772 100644 --- a/components/simple_alarm.html +++ b/components/simple_alarm.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/sun.html b/components/sun.html index 2ea3979bbc..450679d69a 100644 --- a/components/sun.html +++ b/components/sun.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/switch.command_switch.html b/components/switch.command_switch.html index c3f32ccab2..80fa8dbcb1 100644 --- a/components/switch.command_switch.html +++ b/components/switch.command_switch.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/switch.hikvision.html b/components/switch.hikvision.html index 4e15f3f3a3..bd3855113c 100644 --- a/components/switch.hikvision.html +++ b/components/switch.hikvision.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/switch.html b/components/switch.html index 8dbe6532d7..0195e94ff9 100644 --- a/components/switch.html +++ b/components/switch.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/switch.transmission.html b/components/switch.transmission.html index a8eff0c591..4e96086f87 100644 --- a/components/switch.transmission.html +++ b/components/switch.transmission.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/switch.wemo.html b/components/switch.wemo.html index eecf7b11be..6e6b1ea3ad 100644 --- a/components/switch.wemo.html +++ b/components/switch.wemo.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/tellstick.html b/components/tellstick.html index 7c68111e58..e73af20d50 100644 --- a/components/tellstick.html +++ b/components/tellstick.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/thermostat.heat_control.html b/components/thermostat.heat_control.html index 1aa73f41d0..69f1c959ab 100644 --- a/components/thermostat.heat_control.html +++ b/components/thermostat.heat_control.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/thermostat.html b/components/thermostat.html index 98477819a2..76299f9ff4 100644 --- a/components/thermostat.html +++ b/components/thermostat.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/thermostat.nest.html b/components/thermostat.nest.html index 5c1b479f80..24a49564c6 100644 --- a/components/thermostat.nest.html +++ b/components/thermostat.nest.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/vera.html b/components/vera.html index 6540750868..077feba35f 100644 --- a/components/vera.html +++ b/components/vera.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/wink.html b/components/wink.html index 9ac5cebb8a..055ac849b7 100644 --- a/components/wink.html +++ b/components/wink.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/components/zwave.html b/components/zwave.html index 278039b85f..da6cd0a35c 100644 --- a/components/zwave.html +++ b/components/zwave.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/demo/manifest.json b/demo/manifest.json index 69143ce517..4454a923df 100644 --- a/demo/manifest.json +++ b/demo/manifest.json @@ -1,7 +1,7 @@ { "name": "Home Assistant", "short_name": "Assistant", - "start_url": "/", + "start_url": "/demo/", "display": "standalone", "icons": [ { diff --git a/developers/add_new_platform.html b/developers/add_new_platform.html index c8ed92207c..1bad9f4a51 100644 --- a/developers/add_new_platform.html +++ b/developers/add_new_platform.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/api.html b/developers/api.html index 0b626f21bc..9308db759c 100644 --- a/developers/api.html +++ b/developers/api.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/architecture.html b/developers/architecture.html index 5a859c8f17..5ba685e867 100644 --- a/developers/architecture.html +++ b/developers/architecture.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/creating_components.html b/developers/creating_components.html index 376b089293..f5d79c0a0a 100644 --- a/developers/creating_components.html +++ b/developers/creating_components.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/credits.html b/developers/credits.html index 11b251c902..fa07a1b227 100644 --- a/developers/credits.html +++ b/developers/credits.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/frontend.html b/developers/frontend.html index 1915f0df0b..8459202742 100644 --- a/developers/frontend.html +++ b/developers/frontend.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/index.html b/developers/index.html index fe3f4bdd33..34537583d5 100644 --- a/developers/index.html +++ b/developers/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/python_api.html b/developers/python_api.html index cb94ff0e74..dc33bf489d 100644 --- a/developers/python_api.html +++ b/developers/python_api.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/rest_api.html b/developers/rest_api.html index 8ee296ac26..66fd5e8dfc 100644 --- a/developers/rest_api.html +++ b/developers/rest_api.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/developers/website.html b/developers/website.html index fabfe02fa6..a0c05d3750 100644 --- a/developers/website.html +++ b/developers/website.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/getting-started/android.html b/getting-started/android.html index 689d6c4041..fbc397ad52 100644 --- a/getting-started/android.html +++ b/getting-started/android.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/getting-started/configuration.html b/getting-started/configuration.html index 2324735eb5..3cfdc2bcad 100644 --- a/getting-started/configuration.html +++ b/getting-started/configuration.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/getting-started/index.html b/getting-started/index.html index 23c1048fa8..00c938df4d 100644 --- a/getting-started/index.html +++ b/getting-started/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • @@ -121,11 +121,9 @@ Installing and running Home Assistant on your local machine is easy. Make sure y 2 3 4 -5
    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
     

    @@ -179,7 +177,7 @@ When using boot2docker on OS X you are unable to map the local time to your Dock
    1
     
    nano ~/.bashrc
     
    - +

    Then add these lines to the end of the file and save:

    1
     2
    @@ -226,11 +224,6 @@ NOTE: the rest of the commands are not being run as sudo and will install python
     pyenv local homeassistant
     
    -

    Step 6. Finish the install

    -
    1
    -
    python3 -m pip install -r requirements.txt
    -
    -

    Step 7. Start it up

    1
     
    python3 -m homeassistant
    diff --git a/getting-started/troubleshooting.html b/getting-started/troubleshooting.html
    index 195ad6b59f..1bb0e6e6f1 100644
    --- a/getting-started/troubleshooting.html
    +++ b/getting-started/troubleshooting.html
    @@ -75,7 +75,7 @@
         
       
       
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/help/help.html b/help/index.html similarity index 98% rename from help/help.html rename to help/index.html index 61c87c407e..fec7b59ec1 100644 --- a/help/help.html +++ b/help/index.html @@ -20,7 +20,7 @@ - + @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/images/supported_brands/efergy.png b/images/supported_brands/efergy.png new file mode 100644 index 0000000000..4d1c1673cd Binary files /dev/null and b/images/supported_brands/efergy.png differ diff --git a/index.html b/index.html index a3ac2f04d1..4d883cbba5 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@
  • Blog
  • -
  • Need help?
  • +
  • Need help?
  • diff --git a/sitemap.xml b/sitemap.xml index b8e72d6a46..9b72411134 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,5 +1,10 @@ + + https://home-assistant.io/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/ + 2015-07-11T01:37:00-07:00 + 0.8 + https://home-assistant.io/blog/2015/06/10/release-notes/ 2015-06-10T18:54:00-07:00 @@ -82,493 +87,505 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/getting-started/android.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/arduino.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/camera.generic.html + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/getting-started/configuration.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/configurator.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/conversation.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/credits.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.ddwrt.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.luci.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.netgear.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tomato.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tplink.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/group.html - 2015-07-06T20:51:19-07:00 - weekly - 0.7 - - - https://home-assistant.io/help/help.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/history.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/ - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 1.0 - - https://home-assistant.io/blog/ - 2015-07-06T20:51:19-07:00 - weekly - 0.7 - https://home-assistant.io/blog/archives/ - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 - https://home-assistant.io/components/ - 2015-07-06T20:51:19-07:00 - weekly - 0.7 - - - https://home-assistant.io/getting-started/ - 2015-07-06T20:51:19-07:00 + https://home-assistant.io/blog/ + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/ - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/ + 2015-07-11T02:00:29-07:00 + weekly + 0.7 + + + https://home-assistant.io/getting-started/ + 2015-07-11T02:00:29-07:00 + weekly + 0.7 + + + https://home-assistant.io/help/ + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/isy994.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/light.hue.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/light.limitlessled.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/logbook.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/media_player.cast.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/media_player.kodi.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/media_player.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/media_player.mpd.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/modbus.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.file.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.instapush.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.nma.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushbullet.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushover.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.smtp.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.syslog.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/notify.xmpp.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/python_api.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/rest_api.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/scene.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/scheduler.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/script.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.bitcoin.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/sensor.efergy.html + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.forecast.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mysensors.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.openweathermap.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.sabnzbd.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.systemmonitor.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.time_date.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sensor.transmission.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/switch.command_switch.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/switch.hikvision.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/switch.transmission.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/switch.wemo.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/tellstick.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.heat_control.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.nest.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/vera.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/developers/website.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7 https://home-assistant.io/components/zwave.html - 2015-07-06T20:51:19-07:00 + 2015-07-11T02:00:29-07:00 weekly 0.7