diff --git a/source/dashboards/features.markdown b/source/dashboards/features.markdown index 3a621cac8b0..02e79f282ad 100644 --- a/source/dashboards/features.markdown +++ b/source/dashboards/features.markdown @@ -215,7 +215,7 @@ type: ## Humidifier modes -Widget that displays buttons to control the mode for a [humidifier](/integrations/humidifier). +Widget that displays buttons or icons to control the mode for a [humidifier](/integrations/humidifier).

Screenshot of the tile card with the humidifier modes feature @@ -225,6 +225,10 @@ Widget that displays buttons to control the mode for a [humidifier](/integration ```yaml features: - type: "humidifier-modes" + style: "icons" + modes: + - home + - eco ``` {% configuration features %} @@ -232,6 +236,36 @@ type: required: true description: "`humidifier-modes`" type: string +style: + required: false + description: "How the modes should be displayed. It can be either `dropdown` or `icons`." + type: string + default: dropdown +modes: + required: true + description: List of modes to show on the card. The list can contain `normal`, `eco`, `away`, `boost`, `comfort`, `home`, `sleep`, `auto`, and `baby` or any other custom mode. + type: list +{% endconfiguration %} + +## Humidifier toggle + +Widget that displays buttons to turn on or off a [humidifier](/integrations/humidifier). + +

+ Screenshot of the tile card with the humidifier toggle feature + Screenshot of the tile card with the humidifier toggle feature +

+ +```yaml +features: + - type: "humidifier-toggle" +``` + +{% configuration features %} +type: + required: true + description: "`humidifier-toggle`" + type: string {% endconfiguration %} ## Lawn mower commands @@ -331,6 +365,27 @@ style: default: slider {% endconfiguration %} +## Target humidity + +Widget that displays a slider to select the target humidity for a [humidifier](/integrations/humidifier). + +

+ Screenshot of the tile card with the target humidity feature + Screenshot of the tile card with the target humidity feature +

+ +```yaml +features: + - type: "target-humidity" +``` + +{% configuration features %} +type: + required: true + description: "`target-humidity`" + type: string +{% endconfiguration %} + ## Target temperature Widget that displays buttons to select the target temperature for a [climate](/integrations/climate) or a [water heater](/integrations/water_heater). diff --git a/source/images/dashboards/features/humidifier_modes.png b/source/images/dashboards/features/humidifier_modes.png index 7a42f9d1edf..d122d9eb345 100644 Binary files a/source/images/dashboards/features/humidifier_modes.png and b/source/images/dashboards/features/humidifier_modes.png differ diff --git a/source/images/dashboards/features/humidifier_toggle.png b/source/images/dashboards/features/humidifier_toggle.png new file mode 100644 index 00000000000..7a42f9d1edf Binary files /dev/null and b/source/images/dashboards/features/humidifier_toggle.png differ diff --git a/source/images/dashboards/features/target_humidity.png b/source/images/dashboards/features/target_humidity.png new file mode 100644 index 00000000000..ac54b9e4980 Binary files /dev/null and b/source/images/dashboards/features/target_humidity.png differ