diff --git a/source/_dashboards/tile.markdown b/source/_dashboards/tile.markdown
index 20d2711589e..72faf40b814 100644
--- a/source/_dashboards/tile.markdown
+++ b/source/_dashboards/tile.markdown
@@ -106,6 +106,38 @@ Some color tokens are available to colorize the tile card : `primary`, `accent`,
Some entities have support for "features". These widgets add quick controls to the tile card.
+### Alarm modes
+
+Widget that display buttons to arm and disarm an [alarm](/integrations/alarm_control_panel).
+
+
+
+ Screenshot of the tile card with alarm modes feature
+
+
+```yaml
+features:
+ - type: "alarm-modes"
+ modes:
+ - armed_home
+ - armed_away
+ - armed_night
+ - armed_vacation
+ - armed_custom_bypass
+ - disarmed
+```
+
+{% configuration %}
+type:
+ required: true
+ description: "`alarm-modes`"
+ type: string
+modes:
+ required: true
+ description: List of modes to show on the card. The list can contain `armed_home`, `armed_away`, `armed_night`, `armed_vacation`, `armed_custom_bypass` and `disarmed`.
+ type: list
+{% endconfiguration %}
+
### Cover open/close
Widget that display buttons to open, close or stop a [cover](/integrations/cover).
@@ -148,6 +180,27 @@ type:
type: string
{% endconfiguration %}
+### Fan speed
+
+Widget that display speed controls for a [fan](/integrations/fan).
+
+
+
+ Screenshot of the tile card with fan speed feature
+
+
+```yaml
+features:
+ - type: "fan-speed"
+```
+
+{% configuration %}
+type:
+ required: true
+ description: "`fan-speed`"
+ type: string
+{% endconfiguration %}
+
### Light brightness
Widget that display a slider to select the brightness for a [light](/integrations/light).
diff --git a/source/images/dashboards/tile-features/alarm_modes.png b/source/images/dashboards/tile-features/alarm_modes.png
new file mode 100644
index 00000000000..229cca40b6a
Binary files /dev/null and b/source/images/dashboards/tile-features/alarm_modes.png differ
diff --git a/source/images/dashboards/tile-features/fan_speed.png b/source/images/dashboards/tile-features/fan_speed.png
new file mode 100644
index 00000000000..4cd5ed95771
Binary files /dev/null and b/source/images/dashboards/tile-features/fan_speed.png differ