From cafdb74e7909af4a2b06c63cade8d38f2abce7d1 Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Mon, 15 May 2017 21:23:20 +0200 Subject: [PATCH 1/6] Create sensor.buienradar.markdown --- source/_components/sensor.buienradar.markdown | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 source/_components/sensor.buienradar.markdown diff --git a/source/_components/sensor.buienradar.markdown b/source/_components/sensor.buienradar.markdown new file mode 100644 index 000000000000..b97f53b48f3f --- /dev/null +++ b/source/_components/sensor.buienradar.markdown @@ -0,0 +1,63 @@ +--- +layout: page +title: "buienradar" +description: "Instructions how to integrate buienradar.nl sensor within Home Assistant." +date: 2017-05-15 14:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: +ha_category: Weather +ha_release: 0.44 +--- + + +The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The +weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands. +The relevant weatherstation used will be automatically selected based on the location specified in the HA config (or in the buienradar weather/sensor component). + +To add the buienradar sensor to your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + - platform: buienradar + monitored_conditions: + - stationname + - symbol + - humidity + - temperature + - groundtemperature + - windspeed + - windforce + - winddirection + - windazimuth + - pressure + - visibility + - windgust + - precipitation + - irradiance +``` + +Configuration variables: + +- **platform** (*Required*): buienradar. +- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **monitored_conditions** array (*Required*): one or more conditions to display in the frontend. + - **stationname**: the name of the selected meteo-station. + - **symbol**: A symbol for the current weather. + - **humidity**: The relative humidity (%). + - **temperature**: The current temperature (in C). + - **groundtemperature**: The current ground temperature (in C). + - **windspeed**: The wind speed in m/s. + - **windforce**: The wind speed/force in Bft. + - **winddirection**: Where the wind is coming from in degrees, with true north at 0° and progressing clockwise. + - **windazimuth**: Where the wind is coming from: N (North),Z (south), NO (Noth-East), etc.. + - **pressure**: The sea-level air pressure in hPa. + - **visibility**: Visibility in meters (m). + - **windgust**: The windspeed of wind gusts (m/s). + - **precipitation**: the amount of precipitation/rain in mm/h. + - **irradiance**: Sun intensity in Watt per square meter (W/m2). + From 51e9cf10a32031a5c89181ab3f5274a879a9fbee Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Mon, 15 May 2017 21:31:30 +0200 Subject: [PATCH 2/6] Create weather.buienradar.markdown --- .../_components/weather.buienradar.markdown | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 source/_components/weather.buienradar.markdown diff --git a/source/_components/weather.buienradar.markdown b/source/_components/weather.buienradar.markdown new file mode 100644 index 000000000000..dc586d3c509d --- /dev/null +++ b/source/_components/weather.buienradar.markdown @@ -0,0 +1,50 @@ +--- +layout: page +title: "Buienradar Weather" +description: "Instructions how to integrate buienradar.nl weather within Home Assistant." +date: 2017-05-15 14:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: +ha_category: Weather +ha_release: 0.44 +--- + +The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The +weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands. +The relevant weatherstation used will be automatically selected based on the location specified in the HA config (or in the buienradar weather/sensor component). + +To add the buienradar sensor to your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +weather: + - platform: buienradar + name: buienradar +``` + +Configuration variables: +- **platform** (*Required*): buienradar +- **name** (*Optional*): A name for the weather platform. +- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **forecast** (*Optional*): 'True' to add a temperature forecast, 'False' to suppress it + + +A full configuration example: + +```yaml +weather: + - platform: buienradar + name: buienradar + latitude: 51.65 + longitude: 5.70 + forecast: True +``` + +

+This platform is an alternative to the [`buienradar`](/components/sensor.buienradar/) sensor. +The weather platform is easier to configure but less customisable. +

From f31e4e68605517ef389e4746670d72af1ea1dad0 Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Mon, 15 May 2017 21:33:24 +0200 Subject: [PATCH 3/6] Update sensor.buienradar.markdown --- source/_components/sensor.buienradar.markdown | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/source/_components/sensor.buienradar.markdown b/source/_components/sensor.buienradar.markdown index b97f53b48f3f..9d409178518a 100644 --- a/source/_components/sensor.buienradar.markdown +++ b/source/_components/sensor.buienradar.markdown @@ -61,3 +61,26 @@ Configuration variables: - **precipitation**: the amount of precipitation/rain in mm/h. - **irradiance**: Sun intensity in Watt per square meter (W/m2). +A full configuration example: + +```yaml +# Example configuration.yaml entry +- platform: buienradar + latitude: 51.65 + longitude: 5.70 + monitored_conditions: + - stationname + - symbol + - humidity + - temperature + - groundtemperature + - windspeed + - windforce + - winddirection + - windazimuth + - pressure + - visibility + - windgust + - precipitation + - irradiance +``` From a7023d35728b9b638da2bd486b905fa37597f1ef Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Wed, 17 May 2017 15:18:06 +0200 Subject: [PATCH 4/6] processed reviews --- source/_components/sensor.buienradar.markdown | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/source/_components/sensor.buienradar.markdown b/source/_components/sensor.buienradar.markdown index 9d409178518a..18735470e807 100644 --- a/source/_components/sensor.buienradar.markdown +++ b/source/_components/sensor.buienradar.markdown @@ -1,6 +1,6 @@ --- layout: page -title: "buienradar" +title: "Buienradar" description: "Instructions how to integrate buienradar.nl sensor within Home Assistant." date: 2017-05-15 14:00 sidebar: true @@ -15,29 +15,20 @@ ha_release: 0.44 The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands. -The relevant weatherstation used will be automatically selected based on the location specified in the HA config (or in the buienradar weather/sensor component). +The relevant weatherstation used will be automatically selected based on the location specified in the Home Assistant configuration (or in the buienradar weather/sensor component). -To add the buienradar sensor to your installation, add the following to your `configuration.yaml` file: +To integrate `buienradar` with Home Assistant, add the following section to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry sensor: - platform: buienradar monitored_conditions: - - stationname - symbol - humidity - temperature - - groundtemperature - windspeed - - windforce - - winddirection - - windazimuth - pressure - - visibility - - windgust - - precipitation - - irradiance ``` Configuration variables: @@ -61,7 +52,7 @@ Configuration variables: - **precipitation**: the amount of precipitation/rain in mm/h. - **irradiance**: Sun intensity in Watt per square meter (W/m2). -A full configuration example: +Full configuration example where location is manually specified: ```yaml # Example configuration.yaml entry @@ -84,3 +75,4 @@ A full configuration example: - precipitation - irradiance ``` + From 2797bb2f44f583445e5a0344519d885ed0eb7496 Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Wed, 17 May 2017 15:20:49 +0200 Subject: [PATCH 5/6] Update weather.buienradar.markdown --- source/_components/weather.buienradar.markdown | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/source/_components/weather.buienradar.markdown b/source/_components/weather.buienradar.markdown index dc586d3c509d..8ba147619da2 100644 --- a/source/_components/weather.buienradar.markdown +++ b/source/_components/weather.buienradar.markdown @@ -14,22 +14,20 @@ ha_release: 0.44 The `buienradar` platform uses [buienradar.nl](http://buienradar.nl/) as an source for current meteorological data for your location. The weather forecast is delivered by Buienradar, who provides a webservice that provides detailed weather information for users in The Netherlands. -The relevant weatherstation used will be automatically selected based on the location specified in the HA config (or in the buienradar weather/sensor component). +The relevant weatherstation used will be automatically selected based on the location specified in the Home Assistant configuration (or in the buienradar weather/sensor component). -To add the buienradar sensor to your installation, add the following to your `configuration.yaml` file: +To add the buienradar weather to your installation, add the following to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry weather: - platform: buienradar - name: buienradar ``` Configuration variables: - **platform** (*Required*): buienradar -- **name** (*Optional*): A name for the weather platform. -- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. -- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar. - **forecast** (*Optional*): 'True' to add a temperature forecast, 'False' to suppress it From 76d39206a911881feb9782be91fbcf07e6f0143f Mon Sep 17 00:00:00 2001 From: mjj4791 Date: Wed, 17 May 2017 15:21:25 +0200 Subject: [PATCH 6/6] Update sensor.buienradar.markdown --- source/_components/sensor.buienradar.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/sensor.buienradar.markdown b/source/_components/sensor.buienradar.markdown index 18735470e807..f1d6ffaf5319 100644 --- a/source/_components/sensor.buienradar.markdown +++ b/source/_components/sensor.buienradar.markdown @@ -34,8 +34,8 @@ sensor: Configuration variables: - **platform** (*Required*): buienradar. -- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. -- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from HA configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **latitude** (*Optional*): latitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar. +- **longitude** (*Optional*): longitude to use for selection of data source location. Longitude & latitude will be taken from Home Assistant configuration, but can be overridden/changed in this component to select a different location for buienradar. - **monitored_conditions** array (*Required*): one or more conditions to display in the frontend. - **stationname**: the name of the selected meteo-station. - **symbol**: A symbol for the current weather.