thats not my issue as the devices are working fine and show temp humidity etc correctly when you click on the tile. so the values are there,. there definately is some code. missing.
here is the code and i did add unit but still not showing anythng.
tiles
{
valueTile("temperature", "device.temperature", width: 2, height: 2) {
tileAttribute("device.temperature", key: "PRIMARY_CONTROL") {
state("temperature", label:'${currentValue}°', unit:"F",
icon: "http://cdn.device-icons.smartthings.com/Weather/weather2-icn@2x.png",
backgroundColors:[
[value: 1, color: "#c8e3f9"],
[value: 10, color: "#dbdee2"],
[value: 20, color: "#c0d2e4"],
[value: 32, color: "#153591"],
[value: 44, color: "#1e9cbb"],
[value: 59, color: "#90d2a7"],
[value: 74, color: "#44b621"],
[value: 84, color: "#f1d801"],
[value: 92, color: "#d04e00"],
[value: 98, color: "#bc2323"]
]
)
}
}
valueTile("humidity", "device.humidity", inactiveLabel: false) {
state "humidity", label:'Humidity\n ${currentValue}%', unit:"",
icon: "http://cdn.device-icons.smartthings.com/Weather/weather12-icn@2x.png",
backgroundColors : [
[value: 01, color: "#724529"],
[value: 11, color: "#724529"],
[value: 21, color: "#724529"],
[value: 35, color: "#44b621"],
[value: 49, color: "#44b621"],
[value: 50, color: "#1e9cbb"]
]
}