diff --git a/atom.xml b/atom.xml index 29cd4093c4..4bd836f483 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index ab20a31279..9b81670764 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index b821aa57dc..3271ead5c6 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: branding | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index 4a8388b0b4..66120685f5 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/core/atom.xml b/blog/categories/core/atom.xml index e533c4d4f1..da668fb079 100644 --- a/blog/categories/core/atom.xml +++ b/blog/categories/core/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: core | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/frontend/atom.xml b/blog/categories/frontend/atom.xml index 04eec6b14d..afe9976d10 100644 --- a/blog/categories/frontend/atom.xml +++ b/blog/categories/frontend/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: frontend | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index bde20807be..d81621e111 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-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 07a0092171..45b96d30ac 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 https://home-assistant.io/ diff --git a/components/index.html b/components/index.html index 6933918d99..197c0f0d29 100644 --- a/components/index.html +++ b/components/index.html @@ -276,6 +276,18 @@ the manufacturers of these devices. Provides a logbook-style view on the Entity history. + + +Notify My Android (NMA) +Allow sending messages using Notify My Android (NMA) + + + + +Instapush +Allow sending messages using Instapush + + PushBullet @@ -305,6 +317,12 @@ the manufacturers of these devices. Keyboard Simulate key presses on the host machine + + + +OpenWeatherMap +Display current meteorological data from your location + diff --git a/components/notify.instapush.html b/components/notify.instapush.html new file mode 100644 index 0000000000..1f576374f8 --- /dev/null +++ b/components/notify.instapush.html @@ -0,0 +1,196 @@ + + + + + + + + + + + + Instapush otification support - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+ +
+ + +
+ + +
+

+ Instapush Otification Support +

+
+
+ + +

+The instapush platform uses Instapush to delivery notifications from Home Assistant to your Android or iOS device.

+ +

The Instapush Getting Started page will guide through the process of creating the required items.

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

To retrieve those values for existing settings, log into your account at https://instapush.im and go to your Dashboard. Then click APPS tab, choose an app, and check the Basic Info section. The Application ID is the api_key and app_secret is the Application Secret.

+ +

It’s easy to test your Instapush setup outside of Home Assistant. Assuming you have an event notification and a tracker home-assistant, just fire a request and check the Instapush dashboard for a new entry.

+ +
1
+2
+3
+4
+5
+6
+
curl -X POST \
+    -H "x-instapush-appid: YOUR_APP_KEY" \
+    -H "x-instapush-appsecret: YOUR_APP_SECRET" \
+    -H "Content-Type: application/json" \
+      -d '{"event":"notification","trackers":{"home-assistant":"Switch 1"}}' \
+    https://api.instapush.im/v1/post
+
+ + +

For further details, please check the API.

+ +

To use notifications, please see the getting started with automation page.

+ + +
+ + +
+ + +
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/components/notify.nma.html b/components/notify.nma.html new file mode 100644 index 0000000000..b1d66ed242 --- /dev/null +++ b/components/notify.nma.html @@ -0,0 +1,169 @@ + + + + + + + + + + + + Notify My Android (NMA) notification support - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+ +
+ + +
+ + +
+

+ Notify My Android (NMA) Notification Support +

+
+
+ + +

+The nma platform uses Notify My Android (NMA) to delivery notifications from Home Assistant to your Android device.

+ +

To add NMA to your installation, add the following to your configuration.yaml file:

+ +
1
+2
+3
+4
+5
+
# Example configuration.yaml entry
+notify:
+    platform: nma
+    # Get this by registering a new application on http://www.notifymyandroid.com/
+    api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
+
+ + +

To use notifications, please see the getting started with automation page.

+ + +
+ + +
+ + +
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/components/sensor.openweathermap.html b/components/sensor.openweathermap.html new file mode 100644 index 0000000000..335599b742 --- /dev/null +++ b/components/sensor.openweathermap.html @@ -0,0 +1,183 @@ + + + + + + + + + + + + OpenWeatherMap support - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+ +
+ + +
+ + +
+

+ OpenWeatherMap Support +

+
+
+ + +

+The openweathermap platform uses OpenWeatherMap as a source for meteorological data for your location.

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+
# 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'
+
+ + + + + +
+ + +
+ + +
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/supported_brands/instapush.png b/images/supported_brands/instapush.png new file mode 100644 index 0000000000..5d2d8fb72c Binary files /dev/null and b/images/supported_brands/instapush.png differ diff --git a/images/supported_brands/nma.png b/images/supported_brands/nma.png new file mode 100644 index 0000000000..8f6430c1db Binary files /dev/null and b/images/supported_brands/nma.png differ diff --git a/images/supported_brands/openweathermap.png b/images/supported_brands/openweathermap.png new file mode 100644 index 0000000000..376e31c30a Binary files /dev/null and b/images/supported_brands/openweathermap.png differ diff --git a/sitemap.xml b/sitemap.xml index d9c09a7b92..77875c6e21 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -67,337 +67,355 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/getting-started/android.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/getting-started/configuration.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/configurator.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/conversation.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.luci.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.netgear.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tomato.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/group.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/history.html - 2015-04-27T08:28:27-07:00 - weekly - 0.7 - - - https://home-assistant.io/ - 2015-04-27T08:28:27-07:00 - weekly - 1.0 - - - https://home-assistant.io/blog/ - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/blog/archives/ - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 + weekly + 0.7 + + + https://home-assistant.io/blog/ + 2015-05-01T16:56:17-07:00 + weekly + 0.7 + + + https://home-assistant.io/ + 2015-05-01T16:56:17-07:00 + weekly + 1.0 + + + https://home-assistant.io/developers/ + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/getting-started/ - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/ - 2015-04-27T08:28:27-07:00 - weekly - 0.7 - - - https://home-assistant.io/developers/ - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/isy994.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/light.hue.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/logbook.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/media_player.cast.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/media_player.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/modbus.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/notify.instapush.html + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/notify.nma.html + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushbullet.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushover.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/scene.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/scheduler.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/script.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 + weekly + 0.7 + + + https://home-assistant.io/components/sensor.openweathermap.html + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/sensor.sabnzbd.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/sensor.systemmonitor.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/sensor.transmission.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/switch.wemo.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/tellstick.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.heat_control.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.nest.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/vera.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7 https://home-assistant.io/components/zwave.html - 2015-04-27T08:28:27-07:00 + 2015-05-01T16:56:17-07:00 weekly 0.7