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.
{{ bool("yes") }}
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.
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.
{{ bool("maybe", default=false) }}
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 totrue. - Integers other than
0and1are 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.
{% if states("sensor.night_mode") | bool(false) %}
Night mode is active
{% else %}
Normal mode
{% endif %}
Night mode is active
Use with iif for display text
Combine bool with iif to convert a state into a human-readable label.
{{
states("input_boolean.guest_mode") | bool(false)
| iif("Guests expected", "No guests")
}}
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.
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:
-
Immediate if (ternary): iif - Shorthand for basic if/else logic in a single expression.
-
Test if value is numeric: is_number - Tests whether a value can be converted to a finite number.
-
Convert to integer: int - Converts a value to an integer, with an optional default if conversion fails.
-
Convert to float: float - Converts a value to a floating-point number, with an optional default if conversion fails.