Skip to content

Commit

Permalink
[WWST-1632; WWST-1642; WWST-1515] Fingerprint for Trane Thermostat (S…
Browse files Browse the repository at this point in the history
…martThingsCommunity#3600)

* Added fingerprint for Trane Thermostat

* Removed 'emergency heat' from supported modes.

* Added fingerprint for Trane XR524 and American Standard 624
  • Loading branch information
PKacprowiczS authored and antonbo committed Dec 11, 2018
1 parent 533d876 commit b9b1ad5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ metadata {
fingerprint deviceId: "0x08"
fingerprint inClusters: "0x43,0x40,0x44,0x31"
fingerprint mfr:"0039", prod:"0011", model:"0001", deviceJoinName: "Honeywell Z-Wave Thermostat"
fingerprint mfr:"008B", prod:"5452", model:"5439", deviceJoinName: "Trane Thermostat"
fingerprint mfr:"008B", prod:"5452", model:"5442", deviceJoinName: "Trane Thermostat"
fingerprint mfr:"008B", prod:"5452", model:"5443", deviceJoinName: "American Standard Thermostat"
}

tiles {
Expand Down Expand Up @@ -282,7 +285,7 @@ def zwaveEvent(physicalgraph.zwave.commands.thermostatmodev2.ThermostatModeSuppo
if(cmd.heat) { supportedModes << "heat" }
if(cmd.cool) { supportedModes << "cool" }
if(cmd.auto) { supportedModes << "auto" }
if(cmd.auxiliaryemergencyHeat) { supportedModes << "emergency heat" }
//if(cmd.auxiliaryemergencyHeat) { supportedModes << "emergency heat" }

state.supportedModes = supportedModes
sendEvent(name: "supportedThermostatModes", value: supportedModes, displayed: false)
Expand Down

0 comments on commit b9b1ad5

Please sign in to comment.