Nest not showing/updating temp, humidity, etc

So Ive installed the nest binding and confgured it, but my Basic UI shows no updates. An help appeciated!

I have nest events in my logifle:
nest_thermostat_xxxxxe9_71_QGTaikHSHWvuumNUaSgTSUGYCNhh3_set_point changed from 20.0 to 18.5
nest_thermostat_xxxxxe9_71_QGTaikHSHWvuumNUaSgTSUGYCNhh3_mode changed from ECO to HEAT

My nest items are online in Paper UI

items:

String home_away "Home/Away [%s]" <present> { nest="=[structures(Home).away]" }
DateTime Hallway_last_connection "Last Connection [%1$tm/%1$td/%1$tY %1$tH:%1$tM:%1$tS]" <calendar> {nest="<[thermostats(Hallway).last_connection]"}
String Hallway_hvac_mode "HVAC Mode" <climate> { nest="=[thermostats(Hallway).hvac_mode]" }
String Hallway_temperature_scale "Temperature Scale [%s]" { nest="<[thermostats(Hallway).temperature_scale]" }
Number Hallway_ambient_temperature_f "Ambient Temperature [%.1f °F]" <temperature> { nest="<[thermostats(Hallway).ambient_temperature_f]" }
Number Hallway_ambient_temperature_c "Ambient Temperature [%.1f °C]" <temperature> { nest="<[thermostats(Hallway).ambient_temperature_c]" }
Number Hallway_humidity "Humidity [%d %%]" <humidity> { nest="<[thermostats(Hallway).humidity]" }
Number Hallway_target_temperature_f "Target Temperature [%.1f °F]" <temperature> { nest="=[thermostats(Hallway).target_temperature_f]" }
Number Hallway_target_temperature_low_f "Minimum Temperature [%.1f °F]" <temperature> { nest="=[thermostats(Hallway).target_temperature_low_f]" }
Number Hallway_target_temperature_high_f "Maximum Temperature [%.1f °F]" <temperature> { nest="=[thermostats(Hallway).target_temperature_high_f]" }
Number Hallway_away_temperature_low_f "Minimum Away Temp. [%.1Hf °F]" <temperature> { nest="<[thermostats(Hallway).away_temperature_low_f]" }
Number Hallway_away_temperature_high_f "Maximum Away Temp. [%.1f °F]" <temperature> { nest="<[thermostats(Hallway).away_temperature_high_f]" }

Sitemap:

Frame label="Home" icon="house" {
    Switch item=home_away mappings=[home="Home",away="Away"]
  }
  Frame label="Hallway Thermostat" {
    Text item=Hallway_ambient_temperature_f visibility=[Hallway_temperature_scale=="F"]
    Text item=Hallway_ambient_temperature_c visibility=[Hallway_temperature_scale=="C"]
    Text item=Hallway_humidity
    Switch item=Hallway_hvac_mode mappings=[heat="Heat",cool="Cool","heat-cool"="Auto",off="Off"]
    Text item=Hallway_away_temperature_low_f visibility=[home_away=="away",home_away=="auto-away"]
    Text item=Hallway_away_temperature_high_f visibility=[home_away=="away",home_away=="auto-away"]
    Setpoint item=Hallway_target_temperature_f label="Target Temperature [%.1f °F]" minValue=50 maxValue=80 step=1 visibility=[Hallway_hvac_mode=="heat",Hallway_hvac_mode=="cool"]
    Setpoint item=Hallway_target_temperature_low_f label="Minimum Temperature [%.1f °F]" minValue=50 maxValue=80 step=1 visibility=[Hallway_hvac_mode=="heat-cool"]
    Setpoint item=Hallway_target_temperature_high_f label="Maximum Temperature [%.1f °F]" minValue=50 maxValue=80 step=1 visibility=[Hallway_hvac_mode=="heat-cool"]
    Text item=Hallway_last_connection
  }

With openHAB 2.2.0 there is now also a native OH2 Nest Binding. It looks like your logfile has logging of the new Nest Binding however your items and sitemap are still using the legacy OH 1.x Nest Binding format.

So you can either:

or

  • Uninstall the OH2.2 Nest Binding and install the legacy OH 1.x Nest Binding after enabling legacy bindings (Paper UI -> Configuration -> System -> Add-on Management -> Include Legacy 1.x Bindings)

Thank you, I ended up using the OH1.x binding.