-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89fb3cc
commit f706a77
Showing
1 changed file
with
38 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Please note: This version has breaking changes. | ||
If you update from a previous version, you will need to adjust your configuration.yaml! | ||
|
||
List of changes: | ||
- Major code overhaul for full HA integration. It now runs as a worker process inside HA, instead of calling it as a script in a separate subprocess. | ||
- Introduced coordinator, so data handling is now fully managed and controlled by HA. | ||
- Renamed configuration.yaml to vent_conf.yaml, to avoid confusion with file names. | ||
- Renamed ventcontrol.py to vent_functions.py. (The old script will still work stand-alone) | ||
- Internally not using state and unit_of_measurement anymore, but their native_* counterparts. | ||
- Better log control - supporting log levels error, info and debug now. | ||
|
||
UPDATES: | ||
|
||
Please change the following 2 items in your configuration.yaml: | ||
|
||
1. Name of the configuration file: | ||
```yaml | ||
old: | ||
helios_vallox_ventilation: | ||
!include custom_components/helios_vallox_ventilation/configuration.yaml | ||
|
||
new/change to: | ||
helios_vallox_ventilation: | ||
!include custom_components/helios_vallox_ventilation/vent_conf.yaml | ||
``` | ||
2. Log level | ||
```yaml | ||
old: | ||
logger: | ||
logs: | ||
custom_components.helios_vallox_ventilation: debug | ||
|
||
new/change to: | ||
logger: | ||
logs: | ||
custom_components.helios_vallox_ventilation: error | ||
``` |