[SOLVED] Weather values not shown in UI

Hi,

I am using the weather binding with wunderground and it works so far.

Here is my config:

Item:

Number   Temperatur_Max_heute                 "Temperatur heute max [%.1f °C]"                                        {weather="locationId=home, forecast=0, type=temperature, property=max"}

Sitemap:

 Text item="Temperatur_Max_heute"  icon="temperature"

I can see it holds a value in the CLI:

openhab> smarthome:status Temperatur_Max_heute
23.00

But it’s not showing a value in the sitemap. Any ideas ?

Thanks

That is not an items definition, that is a sitemap definition.
For correct items definition see the docs:
http://docs.openhab.org/addons/bindings/weather1/readme.html#configuration-example

sorry - typo. Fixed it.

That’s a string. Maybe you meant to refer to the Item

Text item=Temperatur_Max_heute  icon="temperature"

Well… it was too late that evening I guess… :slight_smile:

It works now -thanks.