diff --git a/homeassistant/components/zwave/climate.py b/homeassistant/components/zwave/climate.py index 188f376e753..18cacf3b8a0 100644 --- a/homeassistant/components/zwave/climate.py +++ b/homeassistant/components/zwave/climate.py @@ -244,7 +244,9 @@ class ZWaveClimate(ZWaveDeviceEntity, ClimateDevice): Need to be a subset of HVAC_MODES. """ - return self._hvac_list + if self.values.mode: + return self._hvac_list + return [] @property def hvac_action(self):