We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf8644 commit b4d6a44Copy full SHA for b4d6a44
homeassistant/components/motion_blinds/cover.py
@@ -239,6 +239,7 @@ async def async_set_absolute_position(self, **kwargs):
239
angle = kwargs.get(ATTR_TILT_POSITION)
240
if angle is not None:
241
angle = angle * 180 / 100
242
+ angle = 180 - angle
243
async with self._api_lock:
244
await self.hass.async_add_executor_job(
245
self._blind.Set_position,
0 commit comments