-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Check for cached consumption first If a Miele device is temporarily disconnected from the Miele cloud while running, the Miele API returns a "not connected" state for the device. If the "not running" check is done first, it causes the energy/water consumption to be reset to 0. This in turn means that the statistics generated by Home Assistant will be messed up, it will look like more energy/water was consumed than in reality. * Fix missing ecoFeedback object * fixes on capabilities: - check that signaInfo, signalDoor, signalFailure are supported by device type - add sensors for drying step (tumble dryer), spinning speed (washer), program phase - check water/energy sub capability on ecofeedback (tumble dryer has no water consumption) * fix the coroutine error (#108) * Bump version * Switching back to manual versioning * fix the coroutine error * warn if unable to delete the cached token check if authorized before creating a new session Co-authored-by: sebltm Co-authored-by: kloknibor <kloknibor@users.noreply.github.com> * Adding changeable interval Fixing #112 * Update README.md * add signalDoor capability to washer, tumble dryer and washer dryer * adding service to start and stop programs * Implement binary sensor for mobile start feature in order to allow automations watch this status change (for example to implement Wash2Dry feature) * Fix null eco feedback returning cached consumption * Expose only target temperature 0 on washers, washer-dryers, dishwashers * Fix disconnection of appliance from Miele cloud, by caching consumption and time sensor values * Keep time sensor value after program end * Fix time sensor for decreasing timers * Add battery sensor for robot vacuum cleaner * Show target temperature 0 as int * Implement energy/water forecast sensors * Use new enum for sensor device class * remove iot_class from hacs.json * Use rinse hold status as running to avoid messing up energy stats when adding "rinse hold" option on washer / washer-dryer * Fix fan state sometimes being incorrectly shown as on --------- Co-authored-by: Sebastian Lövdahl <slovdahl@hibox.fi> Co-authored-by: mundschenk_at <github@mundschenk.at> Co-authored-by: Andrea Turri <andrea.turri92@gmail.com> Co-authored-by: Sébastien Michel <26392528+sebltm@users.noreply.github.com> Co-authored-by: kloknibor <kloknibor@users.noreply.github.com> Co-authored-by: Tereza Tomcova <tereza.tomcova@gmail.com>
- Loading branch information
1 parent
5a1ef78
commit c33617a
Showing
9 changed files
with
575 additions
and
313 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,2 +1,3 @@ | ||
**/*.pyc | ||
.idea/ | ||
*.iml |
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.