-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separated permanent and transient parts of the configuration (#311)
- Loading branch information
1 parent
bb5caaa
commit a05d259
Showing
5 changed files
with
80 additions
and
16 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
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Home Climate Control: v4.3.0. Release Notes - DRAFT | ||
== | ||
|
||
Release focus: [Economizer and Scheduler integration](https://github.com/home-climate-control/dz/milestone/18). | ||
|
||
### Breaking Changes | ||
#### Economizer Configuration | ||
The [economizer](../configuration/zones.md#economizer) section of the configuration looks a bit different now. | ||
|
||
Old syntax: | ||
```yaml | ||
economizer: | ||
ambient-sensor: *ambient-patio-temperature | ||
changeover-delta: 1 | ||
target-temperature: 22 | ||
keep-hvac-on: true | ||
controller: | ||
p: 1 | ||
i: 0.0000008 | ||
limit: 0.7 | ||
mode: cooling | ||
hvac-device: *hvac-a6 | ||
``` | ||
New syntax (note the user changeable settings moving into their own `settings` section): | ||
```yaml | ||
economizer: | ||
ambient-sensor: *ambient-patio-temperature | ||
controller: | ||
p: 1 | ||
i: 0.0000008 | ||
limit: 0.7 | ||
mode: cooling | ||
hvac-device: *hvac-a6 | ||
settings: | ||
changeover-delta: 1 | ||
target-temperature: 22 | ||
keep-hvac-on: true | ||
``` |
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
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