SUPPORT TICKET No:185464
Having made the mistake of updating to Android 2.0.8 I now have messed up tiles. But I have several tiles in my custom device code for my ZXT-120 devices which have made the tiles useless.
I have a tile which reports that last poll but it is blocked by a configure icon I didn’t even include in the tile.
The code for the tile is
// Last Poll Tile
valueTile("lastPoll", "device.lastPoll", inactiveLabel: false, decoration: "flat") {
state "lastPoll", label:'${currentValue}', unit:""
}
But this is how it displays (see box highlighted in red box.
The tile above it Has a “Refresh” icon I also didn’t code.
The code for the heat and cool buttons are identical but the cool displays a refresh icon for some weird reason.
(see tile highlighted in Yellow Box and the tile above it which is normal but coded the same).
The Code for these tiles looks like this
// Heat/Cool Settings and Sliders
valueTile("heatingSetpoint", "device.heatingSetpoint", inactiveLabel: false, decoration: "flat") {
state "heatingSetpoint", label:'${currentValue}° heat', unit:"F", backgroundColor:"#ffffff"
}
controlTile("heatSliderControl", "device.heatingSetpoint", "slider", height: 1, width: 2, inactiveLabel: false, range:"(67..84)") {
state "setHeatingSetpoint", action:"thermostat.setHeatingSetpoint", backgroundColor: "#d04e00"
}
valueTile("coolingSetpoint", "device.coolingSetpoint", inactiveLabel: false, decoration: "flat") {
state "coolingSetpoint", label:'${currentValue}° cool', unit:"F", backgroundColor:"#ffffff"
}
controlTile("coolSliderControl", "device.coolingSetpoint", "slider", height: 1, width: 2, inactiveLabel: false, range:"(67..84)") {
state "setCoolingSetpoint", action:"thermostat.setCoolingSetpoint", backgroundColor: "#1e9cbb"
}
BTW: Anyone have the 2.0.7 APK I think I want my OLD BUGS BACK !
I have a backup of the 2.0.3 APK which I just reverted to but I would like 2.0.7 that was working find for me (Wish I backed that one up !)









