From 66b33dc2b81ce81a84553fff327575a0e36d3c8d Mon Sep 17 00:00:00 2001 From: kbickar Date: Sat, 27 Oct 2018 15:54:41 -0400 Subject: [PATCH] High and low target temps are also supported if target is supported --- homeassistant/components/climate/mqtt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/climate/mqtt.py b/homeassistant/components/climate/mqtt.py index b107710fea5..988b781232d 100644 --- a/homeassistant/components/climate/mqtt.py +++ b/homeassistant/components/climate/mqtt.py @@ -631,6 +631,8 @@ class MqttClimate(MqttAvailability, MqttDiscoveryUpdate, ClimateDevice): if (self._topic[CONF_TEMPERATURE_STATE_TOPIC] is not None) or \ (self._topic[CONF_TEMPERATURE_COMMAND_TOPIC] is not None): support |= SUPPORT_TARGET_TEMPERATURE + support |= SUPPORT_TARGET_TEMPERATURE_HIGH + support |= SUPPORT_TARGET_TEMPERATURE_LOW if (self._topic[CONF_MODE_COMMAND_TOPIC] is not None) or \ (self._topic[CONF_MODE_STATE_TOPIC] is not None):