Convert to boolean: bool

The bool template function converts a value to a boolean (true or false). It recognizes common truthy values like true, yes, on, enable, and 1, as well as falsy values like false, no, off, disable, and 0. If the value cannot be recognized as either, it returns the default you provide instead of raising an error.

This is useful when working with 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] states or attributes that represent on/off or yes/no values as strings. For example, some sensorsSensors return information about a thing, for instance the level of water in a tank. [Learn more] report on or off as their state, and you might need to convert that to a proper boolean for use in a condition or calculation. The bool function understands all the common representations of true and false that appear throughout Home Assistant.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ bool("yes") }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
true

Function signature

The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).

Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.

bool(
    value: Any,
    default: Any = _SENTINEL,
) -> bool | Any

Function parameters

The following parameters can be provided to this function.

value any Required

The value to convert to a boolean. Recognizes true/false, yes/no, on/off, enable/disable, 1/0. Other values raise an error unless a default is provided.

default any (Optional)

Value to return if the conversion fails. If not provided, an error is raised on unrecognized input.

Recognized values

The filter converts the following values to true: true, yes, on, enable, 1.

It converts the following values to false: false, no, off, disable, 0.

All string comparisons are case-insensitive, so True, TRUE, and true all work.

Using a default value

If the input might be an unexpected value, provide a default to prevent errors.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Unrecognized value with default
{{ bool("maybe", default=false) }}
Result (booleanA value that is either true or false. Used for on/off states, yes/no conditions, and similar binary choices.)
false

Good to know

  • Only specific words are recognized as boolean. "unavailable" or "unknown" are not, so pass a default when reading sensor states.
  • Comparisons are case-insensitive, so "YES", "Yes", and "yes" all convert to true.
  • Integers other than 0 and 1 are not recognized and raise an error unless a default is given.

Try it yourself

Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn 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].

More examples

Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.

Convert a state for use in a condition

Check whether a switch-like sensor reports a truthy value.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{% if states("sensor.night_mode") | bool(false) %}
  Night mode is active
{% else %}
  Normal mode
{% endif %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Night mode is active

Use with iif for display text

Combine bool with iif to convert a state into a human-readable label.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{
  states("input_boolean.guest_mode") | bool(false)
  | iif("Guests expected", "No guests")
}}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Guests expected

Still stuck?

The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.

Tip

AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.

Related template functions

These functions work well alongside this one: