Skip to content

Commit

Permalink
Update MonitorAndSetEcobeeTemp.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
yracine committed Dec 14, 2014
1 parent 73c9aa2 commit 35f6438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartapps/MonitorAndSetEcobeeTemp.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ private def check_if_hold_needed() {
String medianTempFormat = String.format('%2.1f', median_temp)
send("MonitorEcobeeTemp>eval: cool median temp ${medianTempFormat}° vs.outdoorTemp ${outdoorTemp}°")
}
if (outdoorTemp > median_temp) { // Only increase cooling settings when outdoorTemp < median_temp
if (outdoorTemp > median_temp) { // Only increase cooling settings when outdoorTemp > median_temp
targetTstatTemp = (programCoolTemp - temp_diff).round(1)
ecobee.setCoolingSetpoint(targetTstatTemp)
send("MonitorEcobeeTemp>cooling setPoint now=${targetTstatTemp.toString()}°,outdoorHum >=${humidity_threshold}%")
Expand Down

0 comments on commit 35f6438

Please sign in to comment.