diff --git a/source/_integrations/water_heater.markdown b/source/_integrations/water_heater.markdown index d99d3d918e7..05e7dbb153a 100644 --- a/source/_integrations/water_heater.markdown +++ b/source/_integrations/water_heater.markdown @@ -38,7 +38,7 @@ A water heater entity can have the following states: ### Water heater control actions -Available actions: `water_heater.set_temperature`, `water_heater.turn_away_mode_on`, `water_heater.turn_away_mode_off`, `water_heater.set_operation_mode` +Available actions: `water_heater.set_temperature`, `water_heater.turn_away_mode_on`, `water_heater.turn_away_mode_off`, `water_heater.set_operation_mode`, `water_heater.turn_on`, `water_heater.turn_off` {% tip %} Not all water heater actions may be available for your platform. Be sure to check the available actions Home Assistant has enabled by checking **Developer Tools** > **Actions**. @@ -50,9 +50,9 @@ Sets target temperature of water heater device. | Data attribute | Optional | Description | | ---------------------- | -------- | ----------- | -| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. -| `temperature` | no | New target temperature for water heater -| `operation_mode` | yes | Operation mode to set the temperature to. This defaults to current_operation mode if not set, or set incorrectly. For a list of possible modes, refer to the {% term integration %} documentation. +| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. | +| `temperature` | no | New target temperature for water heater | +| `operation_mode` | yes | Operation mode to set the temperature to. This defaults to current_operation mode if not set, or set incorrectly. For a list of possible modes, refer to the {% term integration %} documentation. | #### Automation example @@ -76,8 +76,8 @@ Set operation mode for water heater device | Data attribute | Optional | Description | | ---------------------- | -------- | ----------- | -| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. -| `operation_mode` | no | New value of operation mode. For a list of possible modes, refer to the integration documentation. +| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. | +| `operation_mode` | no | New value of operation mode. For a list of possible modes, refer to the integration documentation. | #### Automation example @@ -100,8 +100,8 @@ Turn away mode on or off for water heater device | Data attribute | Optional | Description | | ---------------------- | -------- | ----------- | -| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. -| `away_mode` | no | New value of away mode. 'on'/'off' or True/False +| `entity_id` | yes | String or list of strings that point at the `entity_id` of water heater devices to control. Use `entity_id: all` to target all. | +| `away_mode` | no | New value of away mode. 'on'/'off' or True/False | #### Automation example @@ -117,3 +117,19 @@ automation: data: away_mode: true ``` + +### Action `water_heater.turn_on` + +Turn water heater device on. + +| Data attribute | Optional | Description | +| ---------------------- | -------- | ----------- | +| `entity_id` | yes | String or list of strings that define the entity ID(s) of water heater device(s) to control. To target all water heater devices, use `all`. | + +### Action `water_heater.turn_off` + +Turn water heater device off. + +| Data attribute | Optional | Description | +| ---------------------- | -------- | ----------- | +| `entity_id` | yes | String or list of strings that define the entity ID(s) of water heater device(s) to control. To target all water heater devices, use `all`. |