diff --git a/homeassistant/components/hunterdouglas_powerview/cover.py b/homeassistant/components/hunterdouglas_powerview/cover.py index a3919aefd7c..ebf636c3ff6 100644 --- a/homeassistant/components/hunterdouglas_powerview/cover.py +++ b/homeassistant/components/hunterdouglas_powerview/cover.py @@ -520,6 +520,22 @@ class PowerViewShadeTiltOnly(PowerViewShadeWithTiltBase): self._attr_supported_features |= CoverEntityFeature.STOP_TILT self._max_tilt = self._shade.shade_limits.tilt_max + @property + def current_cover_position(self) -> int: + """Return the current position of cover.""" + # allows using parent class with no other alterations + return CLOSED_POSITION + + @property + def transition_steps(self) -> int: + """Return the steps to make a move.""" + return self.positions.tilt + + @property + def is_closed(self) -> bool: + """Return if the cover is closed.""" + return self.positions.tilt <= CLOSED_POSITION + class PowerViewShadeTopDown(PowerViewShadeBase): """Representation of a shade that lowers from the roof to the floor.