From 9d3deabd5611e726730188c14983b990211bb37d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 2 May 2015 01:38:52 +0200 Subject: [PATCH] add page for openweathermap platform --- .../components/sensor.openweathermap.markdown | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 source/components/sensor.openweathermap.markdown diff --git a/source/components/sensor.openweathermap.markdown b/source/components/sensor.openweathermap.markdown new file mode 100644 index 00000000000..d265318bfd1 --- /dev/null +++ b/source/components/sensor.openweathermap.markdown @@ -0,0 +1,30 @@ +--- +layout: page +title: "OpenWeatherMap support" +description: "Instructions how to integrate OpenWeatherMap within Home Assistant." +date: 2015-04-25 9:06 +sidebar: false +comments: false +sharing: true +footer: true +--- + + +The openweathermap platform uses [OpenWeatherMap](http://openweathermap.org/) as a source for meteorological data for your location. + +```yaml +# Example configuration.yaml entry +sensor: + platform: openweathermap + api_key: YOUR_APP_KEY + monitored_variables: + - type: 'weather' + - type: 'temperature' + - type: 'wind_speed' + - type: 'humidity' + - type: 'pressure' + - type: 'clouds' + - type: 'rain' + - type: 'snow' +``` +