-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.8 Better logic in setZoneSettings
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ def generalSetupPage() { | |
dynamicPage(name: "generalSetupPage", uninstall: true, nextPage: roomsSetupPage) { | ||
section("About") { | ||
paragraph "ScheduleTstatZones, the smartapp that enables Heating/Cooling zoned settings at selected thermostat(s) coupled with z-wave vents (optional) for better temp settings control throughout your home" | ||
paragraph "Version 1.7\n\n" + | ||
paragraph "Version 1.8\n\n" + | ||
"If you like this app, please support the developer via PayPal:\n\n[email protected]\n\n" + | ||
"Copyright©2015 Yves Racine" | ||
href url: "http://github.com/yracine", style: "embedded", required: false, title: "More information...", | ||
|
@@ -569,12 +569,12 @@ def setZoneSettings() { | |
send("ScheduleTstatZones>running schedule ${scheduleName},about to set zone settings as requested") | ||
} | ||
|
||
// set the zoned vent switches to 'on' | ||
def ventSwitchesZoneSet= control_vent_switches_in_zone(i) | ||
log.debug "setZoneSettings>schedule ${scheduleName},list of Vents turned 'on'= ${ventSwitchesZoneSet}" | ||
// adjust the temperature at the thermostat(s) based on temp sensor if any | ||
|
||
if (adjustmentFlag == 'true') { | ||
// set the zoned vent switches to 'on' | ||
def ventSwitchesZoneSet= control_vent_switches_in_zone(i) | ||
log.debug "setZoneSettings>schedule ${scheduleName},list of Vents turned 'on'= ${ventSwitchesZoneSet}" | ||
// adjust the temperature at the thermostat(s) based on temp sensor if any | ||
adjust_thermostat_setpoint_in_zone(i) | ||
set_fan_mode(i) | ||
} | ||
|