-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamic entities, multiple weather stations, code refactoring (#17)
* first part of this working * config flow fixes * handle multiple config entries properly * cleanup usage of list for keeping track of stations, rather use config entry for each * enable all sensors by default * ensure calc'd sensors are taken care of * refactoring, store list of known entities for next HA start, restore state of entities on start * restore for time sensor only, refactor, fix calc * update storage key format, make event handle a property of ambient * refactor stationtype * remove unneeded code * changelog, version, readme
- Loading branch information
1 parent
8f02433
commit 0c0c2b4
Showing
13 changed files
with
286 additions
and
280 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 |
---|---|---|
@@ -1,17 +1,16 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run Home Assistant Core", | ||
"type": "shell", | ||
"command": "cd /srv/homeassistant; source bin/activate; hass -c ./config", | ||
"group": "test", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} | ||
|
||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run Home Assistant Core", | ||
"type": "shell", | ||
"command": "cd /srv/homeassistant; source bin/activate; hass -c ./config", | ||
"group": "test", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "dedicated" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
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
Oops, something went wrong.