From b4d6a44c21878eae757cd35735296369528f82c0 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Sun, 9 Nov 2025 14:54:49 +0100 Subject: [PATCH] Fix set_absolute_position angle (#156185) --- homeassistant/components/motion_blinds/cover.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/motion_blinds/cover.py b/homeassistant/components/motion_blinds/cover.py index be1f3e9f8f31..8af091b90b2c 100644 --- a/homeassistant/components/motion_blinds/cover.py +++ b/homeassistant/components/motion_blinds/cover.py @@ -239,6 +239,7 @@ class MotionBaseDevice(MotionCoordinatorEntity, CoverEntity): angle = kwargs.get(ATTR_TILT_POSITION) if angle is not None: angle = angle * 180 / 100 + angle = 180 - angle async with self._api_lock: await self.hass.async_add_executor_job( self._blind.Set_position,