Fix closed status for non horizontal awnings. (#26840)
This commit is contained in:
parent
1e1f79e45b
commit
2ccd0039d7
1 changed files with 1 additions and 2 deletions
|
@ -137,14 +137,13 @@ class TahomaCover(TahomaDevice, CoverDevice):
|
|||
if self._closure is not None:
|
||||
if self.tahoma_device.type == HORIZONTAL_AWNING:
|
||||
self._position = self._closure
|
||||
self._closed = self._position == 0
|
||||
else:
|
||||
self._position = 100 - self._closure
|
||||
self._closed = self._position == 100
|
||||
if self._position <= 5:
|
||||
self._position = 0
|
||||
if self._position >= 95:
|
||||
self._position = 100
|
||||
self._closed = self._position == 0
|
||||
else:
|
||||
self._position = None
|
||||
if "core:OpenClosedState" in self.tahoma_device.active_states:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue