Water heater target temperature
The Water heater target temperature condition passes when a water heater entityAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more]’s target temperature setting meets a threshold you define. The target temperature is the setpoint you want the water heater to maintain, not the current measured water temperature. Use it when you want an automation to run only if the setpoint is already above, below, inside, or outside a range.
When you target more than one water heater, the condition’s Condition passes if option controls how the check combines results. You can require any targeted water heater to meet the threshold, or demand that all of them do.
Requires the Purpose-specific triggers and conditions Labs preview feature. Enable it at Settings > System > Labs.
Using this condition from the user interface
If you prefer building automations visually, Home Assistant walks you through this condition step by step. You pick what to check, tweak a few options, and save. No YAML knowledge required.
To use Water heater target temperature in an automation:
- Go to Settings > Automations & scenes.
- Open an existing automation, or select Create automation > Create new automation.
- In the And if section, select Add condition.
- Select what you want to check. Under By target (see Targets), pick the area your water heater is in, or select a device, a specific entity, a floor, or a label.
- From the conditions shown for that target, select Water heater target temperature.
- Under Threshold type, choose which setpoints should pass the condition:
- Select Above or Below to compare the setpoint with one threshold.
- Select In range or Outside range to compare the setpoint with a lower and upper threshold.
- You can use a fixed number or select a temperature sensor, a temperature number entity, or a number helper as the threshold.
- Under Unit, select the temperature unit to use for the comparison when you enter a number.
- Under Condition passes if (see Behavior), pick Any or All.
- Under For at least, enter how long the setpoint must stay at the threshold before the condition passes.
- Select Save.
Options in the UI
The target temperature setpoint has to meet this threshold for the condition to pass. Above and Below are exclusive: a setpoint equal to the threshold does not pass. In range is exclusive at both bounds. Outside range is inclusive: a setpoint equal to either bound passes. Default is Above.
You can use a fixed number or select a temperature sensor, a temperature number entity, or a number helper as the threshold.
The temperature unit to use for threshold comparison. Accepts °C, °F, or K. Required when using numerical thresholds (not required when using entity references).
When multiple water heaters are targeted, controls how results combine. Pick Any to pass if at least one targeted water heater meets the threshold, or All to pass only when every targeted water heater does. Default is Any.
Using this condition in YAML
If you work directly in YAML, or you want to know exactly what Home Assistant does under the hood, this section has the technical reference. It lists the field names you use in YAML, their types, and which ones are required.
In YAML, Water heater target temperature is referred to as water_heater.is_target_temperature. A basic example looks like this:
condition: water_heater.is_target_temperature
target:
entity_id: water_heater.utility_room
options:
threshold:
type: above
value:
number: 55
unit_of_measurement: "°C"
This passes when the target temperature of water_heater.utility_room is above 55°C.
To check whether the setpoint stays inside a preferred range:
condition: water_heater.is_target_temperature
target:
entity_id: water_heater.utility_room
options:
threshold:
type: between
value_min:
entity: input_number.water_heater_min_target
value_max:
entity: input_number.water_heater_max_target
Options in YAML
The target temperature setpoint has to meet this threshold for the condition to pass:
-
type: above(exclusive): Sets a minimum. The setpoint must be strictly above the threshold to pass. -
type: below(exclusive): Sets a maximum. The setpoint must be strictly below the threshold to pass. -
type: between(exclusive): Defines a range. The setpoint must be strictly between both bounds to pass. -
type: outside(inclusive): Defines an outside-range. The setpoint must be at or beyond either bound to pass.
For type: above and type: below, use value with either number and unit_of_measurement, or entity. For type: between and type: outside, use value_min and value_max, each with either number and unit_of_measurement, or entity.
When using an entity, its current reading is used as the threshold at the moment the condition is evaluated.
When multiple water heaters are targeted, controls how results combine. Accepts all or any.
Targets of the condition
This condition requires a target. The target is the object that Home Assistant will check. You can point the condition at a single entityAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more], a device, an area, a floor, or a label, and Home Assistant will evaluate every matching water_heater entity behind that target.
-
Entity: one specific water_heater entity, such as
water_heater.living_room. - Device: every water_heater entity that belongs to a device.
- Area: every water_heater entity in a room or area.
- Floor: every water_heater entity on a floor.
- Label: every water_heater entity that shares a label.
You can also select different target types in one condition. For example, you can add a specific entity and an area as targets in the same condition to check both of them at once.
Behavior with multiple targets
When you target more than one entity (or select an area, floor, or label that contains several), the Condition passes if option controls how the results combine:
- Any (default): the condition passes if at least one of the targeted entities matches. For example, if you check three smoke sensors and only one of them detects smoke, the condition still passes. This is useful for questions like “is there smoke anywhere in the house?”
- All: the condition passes only when every targeted entity matches. For example, if you check the same three smoke sensors, the condition passes only once all three report cleared. This is useful for “is the entire house safe now?” checks, so your automation does not send an all-clear while one room still has a reading.
Good to know
- This condition checks the target temperature setpoint, not the current measured water temperature.
- With Any, unavailable and unknown water heaters are skipped. With All, they make the condition fail.
- The threshold entities must provide temperature values. Supported threshold sources are temperature sensors, temperature number entities, and
input_numberhelpers. - To check the current measured temperature instead of the setpoint, use Temperature value.
Try it yourself
Ready to test this? Go to Settings > Automations & scenes, open an automation, and add this condition. Trigger the automation with and without the condition met, and watch whether it continues or stops.
More examples
Real scenarios where this condition gates an automation. Copy any example and adapt it to your setup.
You don’t need to edit YAML to use these examples. Copy a YAML snippet from this page, open the automation editor in Home Assistant, and press Ctrl+V (or Cmd+V on Mac). Home Assistant automatically converts the pasted YAML into the visual editor format, whether it’s a full automation, a single trigger, a condition, or an action.
Automation: enable away mode only when the target temperature is already low
When you leave home, enable away mode only if the water heater target temperature is already below your normal daytime setting.
- Trigger: State: Person changes to not_home
-
Condition: Water heater target temperature
- Target: Utility room water heater
- Threshold type: Below (50°C)
- Action: Set water heater away mode
YAML example for enabling away mode from a lower setpoint
alias: "Enable away mode when the setpoint is already low"
triggers:
- trigger: state
entity_id: person.alex
to: "not_home"
conditions:
- condition: water_heater.is_target_temperature
target:
entity_id: water_heater.utility_room
options:
threshold:
type: below
value:
number: 50
unit_of_measurement: "°C"
actions:
- action: water_heater.set_away_mode
target:
entity_id: water_heater.utility_room
data:
away_mode: true
Automation: notify when the target temperature stays outside the preferred range
Every hour, check whether the target temperature has stayed outside the preferred range for 10 minutes. If it has, send a notification.
- Trigger: Time pattern: Every hour
-
Condition: Water heater target temperature
- Target: Utility room water heater
- Threshold type: Outside range (50-55°C)
- For at least: 00:10:00
-
Action: Send a notification message
-
Target: My Device (
notify.my_device)
-
Target: My Device (
YAML example for a target temperature reminder
alias: "Check whether the target temperature stays outside range"
triggers:
- trigger: time_pattern
hours: "/1"
conditions:
- condition: water_heater.is_target_temperature
target:
entity_id: water_heater.utility_room
options:
threshold:
type: outside
value_min:
number: 50
unit_of_measurement: "°C"
value_max:
number: 55
unit_of_measurement: "°C"
for: "00:10:00"
actions:
- action: notify.send_message
target:
entity_id: notify.my_device
data:
message: "The water heater target temperature has stayed outside 50-55°C for 10 minutes."
Still stuck?
The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with the condition you’re using and what you expected to happen, or share on our subreddit /r/homeassistant.
AI assistants like ChatGPT or Claude can also explain conditions or suggest the right one when you describe what you want in plain language.
Related conditions
These conditions work well alongside this one:
-
Water heater is on: Tests if one or more water heaters are on.
-
Water heater is off: Tests if one or more water heaters are off.
-
Water heater operation mode: Tests if one or more water heaters are set to a specific operation mode.