@riddix/hamh 2.1.0-alpha.406 → 2.1.0-alpha.407
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/backend/cli.js
CHANGED
|
@@ -167590,6 +167590,8 @@ var ThermostatServerBase = class extends FullFeaturedBase {
|
|
|
167590
167590
|
logger164.debug(
|
|
167591
167591
|
`update: limits heat=[${minHeatLimit}, ${maxHeatLimit}], cool=[${minCoolLimit}, ${maxCoolLimit}], systemMode=${systemMode}, runningMode=${runningMode}`
|
|
167592
167592
|
);
|
|
167593
|
+
const controlSequence = config10.getControlSequence(entity.state, this.agent);
|
|
167594
|
+
this.internal.controlSequenceOfOperation = controlSequence;
|
|
167593
167595
|
applyPatchState(this.state, {
|
|
167594
167596
|
...this.features.heating ? {
|
|
167595
167597
|
minHeatSetpointLimit: minHeatLimit,
|
|
@@ -167604,10 +167606,7 @@ var ThermostatServerBase = class extends FullFeaturedBase {
|
|
|
167604
167606
|
absMaxCoolSetpointLimit: maxCoolLimit
|
|
167605
167607
|
} : {},
|
|
167606
167608
|
localTemperature,
|
|
167607
|
-
controlSequenceOfOperation:
|
|
167608
|
-
entity.state,
|
|
167609
|
-
this.agent
|
|
167610
|
-
),
|
|
167609
|
+
controlSequenceOfOperation: controlSequence,
|
|
167611
167610
|
thermostatRunningState: this.getRunningState(systemMode, runningMode),
|
|
167612
167611
|
systemMode,
|
|
167613
167612
|
// thermostatRunningMode: Only set for Auto mode. Matter.js's reactor handles
|