From 728b587933f5a2899ed0ad6742c79f0fd648be41 Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Mon, 17 Jan 2022 12:17:23 -0800 Subject: [PATCH] Add additional buttons to Overkiz integration (#64321) --- homeassistant/components/overkiz/button.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/components/overkiz/button.py b/homeassistant/components/overkiz/button.py index 7fbed39356c..1977669303a 100644 --- a/homeassistant/components/overkiz/button.py +++ b/homeassistant/components/overkiz/button.py @@ -39,6 +39,13 @@ BUTTON_DESCRIPTIONS: list[ButtonEntityDescription] = [ icon="mdi:human-greeting-variant", entity_category=ENTITY_CATEGORY_DIAGNOSTIC, ), + # RTDIndoorSiren / RTDOutdoorSiren + ButtonEntityDescription(key="dingDong", name="Ding Dong", icon="mdi:bell-ring"), + ButtonEntityDescription(key="bip", name="Bip", icon="mdi:bell-ring"), + ButtonEntityDescription( + key="fastBipSequence", name="Fast Bip Sequence", icon="mdi:bell-ring" + ), + ButtonEntityDescription(key="ring", name="Ring", icon="mdi:bell-ring"), ]