From ff83a145703971b87296b385c15694e3be77a03d Mon Sep 17 00:00:00 2001 From: HA-Roberto <80992882+HA-Roberto@users.noreply.github.com> Date: Wed, 19 Feb 2025 00:48:29 -0600 Subject: [PATCH] Add button for bond light temp toggle feature (#135379) Co-authored-by: J. Nick Koston --- homeassistant/components/bond/button.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/homeassistant/components/bond/button.py b/homeassistant/components/bond/button.py index 47c8356d08e..9cea0251b41 100644 --- a/homeassistant/components/bond/button.py +++ b/homeassistant/components/bond/button.py @@ -91,6 +91,13 @@ BUTTONS: tuple[BondButtonEntityDescription, ...] = ( mutually_exclusive=Action.SET_BRIGHTNESS, argument=None, ), + BondButtonEntityDescription( + key=Action.TOGGLE_LIGHT_TEMP, + name="Toggle Light Temperature", + translation_key="toggle_light_temp", + mutually_exclusive=None, # No mutually exclusive action + argument=None, + ), BondButtonEntityDescription( key=Action.START_UP_LIGHT_DIMMER, name="Start Up Light Dimmer",