openhab-docs/_addons_bindings/yahooweather
Thomas Dietrich 826ef4abb4 Distinguish collections, improve update process (#514)
* Rename collection folders

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Change all occurences of addons and repos

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Add further corrections

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Remove temporary directories after processing

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Reduce addons menus, show current uncond.

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Fix typo

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Remove redundant addons from permalinks

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Sort UI menu entries correctly

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>

* Split maven command

Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de>
2017-09-22 21:05:09 +02:00
..
readme.md Distinguish collections, improve update process (#514) 2017-09-22 21:05:09 +02:00

readme.md

id label title type description since logo install
yahooweather YahooWeather YahooWeather - Bindings binding This binding uses the [Yahoo Weather service](https://developer.yahoo.com/weather/) for providing current weather information. 2x images/addons/yahooweather.png auto

{% include base.html %}

YahooWeather Binding

This binding uses the Yahoo Weather service for providing current weather information.

Note: The Yahoo Weather API is provided by Yahoo free of charge for personal, non-commercial uses, but it requires attribution and the acceptance of their terms of use. By using this binding, you confirm that you agree with this - please read the details on https://developer.yahoo.com/weather/.

Supported Things

There is exactly one supported thing, which represents the weather service. It has the id weather.

Thing Configuration

Besides the location (as location as a WOEID number), the second configuration parameter is refresh which defines the refresh interval in seconds.

Channels

The weather information that is retrieved is available as these channels:

Channel Type ID Item Type Description
temperature Number The current temperature in degrees Celsius
humidity Number The current humidity in %
pressure Number The current pressure in millibar (hPa)

Full Example

demo.things:

yahooweather:weather:berlin [ location=638242 ]

demo.items:

Number Temperature 	"Outside Temperature" { channel="yahooweather:weather:berlin:temperature" }

demo.sitemap:

sitemap demo label="Main Menu"
{
	Frame {
		Text item=Temperature
	}
}