Openweathermap binding not retrieving current conditions

The binding has stopped retrieving current conditions. I’ve put the binding into debug mode in the console. I only see this in the log:

Update weather and forecast data of thing 'openweathermap:weather-and-forecast:e6c27ae7:local'.

Here is my config:


location.home.name=home
location.home.latitude=xx.xx  
location.home.longitude=-yy.yy
location.home.provider=OpenWeatherMap
location.home.language=en
location.home.updateInterval=10
location.home.units=US

My item definitions:

Number Humidity "Outside humidity [%.1f %%]" <humidity> {weather="locationId=home, type=atmosphere, property=humidity"}
Number:Pressure PressureDisplay "Outside pressure [%.2f inHg]" <pressure> {weather="locationId=home, type=atmosphere, property=pressure, unit=inches"}
Number:Temperature TempDisplay "Outside temperature [%.1f °F]" <temperature> {weather="locationId=home, type=temperature, property=current, unit=fahrenheit"}

Any ideas?

Switch to the v2 binding, it is working great :grinning:

That’s the one I have installed.

Then your channel config is wrong, that is v1 syntax.

That was it. Thanks.