I am trying to display temperature and humidity on my sitemap. For some reason it will not post a value at all. I can see the data comming through in my logs just fine so I know its getting the information. I just need to figure out what I am dong wrong.
Here is a snap sjot of my logs
2016-11-19 13:20:25.381 [INFO ] [runtime.busevents ] - House_Humidity state updated to 25.5
2016-11-19 13:20:55.396 [INFO ] [runtime.busevents ] - House_Temp state updated to 22.5
2016-11-19 13:21:25.412 [INFO ] [runtime.busevents ] - House_Humidity state updated to 25.4
2016-11-19 13:22:25.443 [INFO ] [runtime.busevents ] - House_Humidity state updated to 25.3
Here is my item file
Number House_Temp "House Temp [%.1f °C]" <temperature> (temperature) {mqtt="<[mysensors-1:mygateway1-out/9/11/1/0/0:state:default]"}
Number House_Humidity "House Humidity [%.1f %%]" <water> (humidity) {mqtt="<[mysensors-1:mygateway1-out/9/10/1/0/1:state:default]"}
and here is my sitemap file
sitemap default label="Main Menu"
{
Frame label="House Temp" {
Text item=House_Temp
Text item=House_Humidity
}
}