Skip to content

Commit

Permalink
Minor code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yracine committed Oct 22, 2015
1 parent 2c4a9b1 commit 124313d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartapps/ecobeeSetZoneWithSchedule.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1608,7 +1608,7 @@ private boolean is_temperature_too_hot_or_too_cold(ventSwitch) {
log.debug("is_temperature_in_vent_too_hot>checking current Temperature of ${ventSwitch}= ${tempSwitch}° vs. HVAC Max Temp of ${MAX_TEMP_VENT_SWITCH}°")
log.debug("is_temperature_in_vent_too_hot>checking current Temperature of ${ventSwitch}= ${tempSwitch}° vs. HVAC Min Temp of ${MIN_TEMP_VENT_SWITCH}°")
if (tempSwitch) {
if (((currentHVACMode=='heat') || (currentHVACMode == 'auto')) && (tempSwitch >= MAX_TEMP_VENT_SWITCH)) {
if (((currentHVACMode=='heat') || (currentHVACMode == 'auto')) && (tempSwitch >= MAX_TEMP_VENT_SWITCH)) {
// Turn the HVAC off, open all vents, and deactivate any further smartapp processing
thermostat.off()
open_all_vents()
Expand Down

0 comments on commit 124313d

Please sign in to comment.