Merge pull request #79 from mrnohr/main-tile-fix

Fix for main tile issue
This commit is contained in:
Vinay Rao
2015-08-27 11:13:01 -07:00
13 changed files with 89 additions and 0 deletions

View File

@@ -47,6 +47,13 @@ metadata {
valueTile("battery", "device.battery", decoration: "flat", inactiveLabel: false, width: 2, height: 2) {
state "battery", label:'${currentValue}% battery', unit:""
}
//This tile is a temporary fix so users can select main tiles again
standardTile("CONVERTED-MULTI-device.water", "device.water", width: 4, height: 4) {
state "dry", icon:"st.alarm.water.dry", backgroundColor:"#ffffff"
state "wet", icon:"st.alarm.water.wet", backgroundColor:"#53a7c0"
}
main (["water", "temperature"])
details(["water", "temperature", "battery"])
}