Hi, I don’t understand what you mean by your statements above…
You want to set your setpoints manually (at the unit) or in the smartapp?
You want what to come down? Your vents?
You do not share any of your configuration regarding the remote sensors.
For examples:
1) What’s the thermostat mode?
The “auto” mode logic is different from the cooling mode logic.
2) Did you enable temp adjustment based on your indoor temp/motion sensors in GeneralSetup page?
If yes, then the smartapp will adjust your thermostat’s setpoints based on the avg temp calculations from
your remote sensors and your current thermostat’s temperature.
If you do not want to adjust your setpoints, then set the above flag to false.
3) Did you enable mode/temp adjustment based on outdoor temp sensor?
Again, if you do not want any setpoints adjustment, just set it to false.
4) Did you set up the smartapp to set your thermostat to Away or Present?
What kind of thermostat are you using? Is it a Nest, an ecobee, or something else?
5) In Room Setup, did you set up the following flag:
input "needOccupiedFlag${indiceRoom}", title: "Will do temp/vent adjustement only when Occupied [default=false]", "bool",
required: false, description: "Optional"
If set to true, then the temp adjustment will be done ONLY if the room is occupied based on the motion
detector.
6) Did you set up your target setpoints in Schedule Setup?
section("Schedule ${indiceSchedule}-Set Thermostat's Cooling setpoint in the selected zone(s) [optional,when no ecobee program/climate available]") {
input (name:"desiredCoolTemp${indiceSchedule}", type:"decimal", title: "Cooling setpoint, default = 75F/23C",
required: false,defaultValue:settings."desiredCoolTemp${indiceSchedule}", description: "Optional")
}
section("Schedule ${indiceSchedule}-Set Thermostat's Heating setpoint [optional,when no ecobee program/climate available]") {
input (name:"desiredHeatTemp${indiceSchedule}", type:"decimal", title: "Heating setpoint, default=72F/21C",
required: false, defaultValue:settings."desiredHeatTemp${indiceSchedule}", description: "Optional")
}
It’s always a good idea to refer to the ST community wiki for the initial configuration based on your
use cases.
http://thingsthataresmart.wiki/index.php?title=ScheduleTstatZones#Configuration
P.S. Please send any further questions to services@maisonsecomatiq.com as it’s easier for me to answer questions from my contributors through gmail conversations.
Also, it would be a good idea to send me screenshots of the whole ConfigDisplay Page (press Tap to Show in the Dashboard page), so that I can really see your actual configuration.
Regards.