From e5b447839af38d5c10e3205ef095aa205cb6dd16 Mon Sep 17 00:00:00 2001 From: rappenze Date: Mon, 6 Jun 2022 13:20:16 +0200 Subject: [PATCH] Fix fibaro cover detection (#72986) --- homeassistant/components/fibaro/cover.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/fibaro/cover.py b/homeassistant/components/fibaro/cover.py index fc6d0a67d3c..e898cd7ead9 100644 --- a/homeassistant/components/fibaro/cover.py +++ b/homeassistant/components/fibaro/cover.py @@ -46,6 +46,8 @@ class FibaroCover(FibaroDevice, CoverEntity): self._attr_supported_features = ( CoverEntityFeature.OPEN | CoverEntityFeature.CLOSE ) + if "stop" in self.fibaro_device.actions: + self._attr_supported_features |= CoverEntityFeature.STOP @staticmethod def bound(position):