diff --git a/gallery/src/pages/lovelace/thermostat-card.ts b/gallery/src/pages/lovelace/thermostat-card.ts index 623adf5e3436..285cdb348ffb 100644 --- a/gallery/src/pages/lovelace/thermostat-card.ts +++ b/gallery/src/pages/lovelace/thermostat-card.ts @@ -35,6 +35,45 @@ const ENTITIES = [ friendly_name: "Nest", supported_features: 43, }), + getEntity("climate", "overkiz_radiator", "heat", { + current_temperature: 18, + min_temp: 7, + max_temp: 35, + temperature: 20, + hvac_modes: ["heat", "auto", "off"], + friendly_name: "Overkiz radiator", + supported_features: 17, + preset_mode: "comfort", + preset_modes: [ + "none", + "frost_protection", + "eco", + "comfort", + "comfort-1", + "comfort-2", + "auto", + "boost", + "external", + "prog", + ], + }), + getEntity("climate", "overkiz_towel_dryer", "heat", { + current_temperature: null, + min_temp: 7, + max_temp: 35, + hvac_modes: ["heat", "off"], + friendly_name: "Overkiz towel dryer", + supported_features: 16, + preset_mode: "eco", + preset_modes: [ + "none", + "frost_protection", + "eco", + "comfort", + "comfort-1", + "comfort-2", + ], + }), getEntity("climate", "sensibo", "fan_only", { current_temperature: null, temperature: null, @@ -58,8 +97,6 @@ const CONFIGS = [ config: ` - type: thermostat entity: climate.ecobee -- type: thermostat - entity: climate.nest `, }, { @@ -69,6 +106,66 @@ const CONFIGS = [ entity: climate.nest `, }, + { + heading: "Feature example", + config: ` +- type: thermostat + entity: climate.overkiz_radiator + features: + - type: climate-hvac-modes + hvac_modes: + - heat + - 'off' + - auto + - type: climate-preset-modes + style: icons + preset_modes: + - none + - frost_protection + - eco + - comfort + - comfort-1 + - comfort-2 + - auto + - boost + - external + - prog + - type: climate-preset-modes + style: dropdown + preset_modes: + - none + - frost_protection + - eco + - comfort + - comfort-1 + - comfort-2 + - auto + - boost + - external + - prog + `, + }, + { + heading: "Preset only example", + config: ` +- type: thermostat + entity: climate.overkiz_towel_dryer + features: + - type: climate-hvac-modes + hvac_modes: + - heat + - 'off' + - type: climate-preset-modes + style: icons + preset_modes: + - none + - frost_protection + - eco + - comfort + - comfort-1 + - comfort-2 + `, + }, { heading: "Fan only example", config: ` diff --git a/gallery/src/pages/more-info/climate.ts b/gallery/src/pages/more-info/climate.ts index f6216a55b1c4..a52c08044f57 100644 --- a/gallery/src/pages/more-info/climate.ts +++ b/gallery/src/pages/more-info/climate.ts @@ -11,7 +11,7 @@ import "../../components/demo-more-infos"; import { ClimateEntityFeature } from "../../../../src/data/climate"; const ENTITIES = [ - getEntity("climate", "thermostat", "heat", { + getEntity("climate", "radiator", "heat", { friendly_name: "Basic heater", hvac_modes: ["heat", "off"], hvac_mode: "heat", @@ -80,6 +80,24 @@ const ENTITIES = [ max_humidity: 100, humidity: 50, }), + getEntity("climate", "towel_dryer", "heat", { + friendly_name: "Preset only heater", + hvac_modes: ["heat", "off"], + hvac_mode: "heat", + preset_modes: [ + "none", + "frost_protection", + "eco", + "comfort", + "comfort-1", + "comfort-2", + ], + preset_mode: "eco", + current_temperature: null, + min_temp: 7, + max_temp: 35, + supported_features: ClimateEntityFeature.PRESET_MODE, + }), getEntity("climate", "unavailable", "unavailable", { friendly_name: "Unavailable heater", hvac_modes: ["heat", "off"],