Convert to integer: int

The int template function converts a value to an integer (whole number). If the value cannot be converted, it returns the default you provide instead of raising an error. Like float, it is “forgiving” and safe to use with sensorSensors return information about a thing, for instance the level of water in a tank. [Learn more] values that might sometimes be invalid.

In Home Assistant, all 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 are stored as strings. When you need a whole number for math, comparisons, or passing to an actionActions are used in several places in Home Assistant. As part of a script or automation, actions define what is going to happen once a trigger is activated. In scripts, an action is called sequence. [Learn more], you need to convert first. The int function also supports a base parameter for converting hexadecimal, octal, or binary strings. If you need decimal precision, use float instead.

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]
{{ int("42") }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
42

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.

int(
    value: Any,
    default: Any = _SENTINEL,
    base: int = 10,
) -> int | Any

Function parameters

The following parameters can be provided to this function.

value any Required

The value to convert to an integer. Strings representing whole numbers (like 42) are converted. Non-numeric 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 invalid input. It is strongly recommended to always provide a default.

base integer (Optional, default: 10)

The numeric base to use for conversion. Defaults to 10 (decimal). Use 16 for hexadecimal, 8 for octal, or 2 for binary.

Using a default value

Since sensorSensors return information about a thing, for instance the level of water in a tank. [Learn more] states can be unavailable or unknown, always provide a default to prevent your 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] from breaking.

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]: Safe conversion with default
{{ states("sensor.battery_level") | int(0) }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
87

Converting from other bases

Use the base parameter to convert hexadecimal, octal, or binary strings.

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]: Convert hexadecimal to integer
{{ int("ff", base=16) }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
255
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]: Convert binary to integer
{{ int("0b1010", base=2) }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
10

Good to know

  • Floats are truncated toward zero, not rounded. 2.9 | int is 2, and -2.9 | int is -2. Use round first if you want rounding.
  • A string with decimals like "21.5" fails without a default. Pipe through float first or supply a default.
  • The base parameter only applies to string inputs. Passing a number with base=16 does not convert it.

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.

Set a light brightness from a sensor

Use an 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] state as a brightness value for a light. The int filter converts the string state to a whole number suitable for the brightness attribute.

ActionActions are used in several places in Home Assistant. As part of a script or automation, actions define what is going to happen once a trigger is activated. In scripts, an action is called *sequence*. [Learn more]
action:
  - action: light.turn_on
    target:
      entity_id: light.living_room
    data:
      brightness: >
        {{ states("sensor.ambient_light") | int(128) }}

Count items with integer math

Calculate how many full hours have passed since a counter was last reset.

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]
{{
  ((as_timestamp(now())
    - as_timestamp(states.counter.runtime.last_changed)) / 3600)
  | int(0)
}}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
3

Use in a condition

Only proceed if the battery level is above a threshold.

AutomationAutomations in Home Assistant allow you to automatically respond to things that happen in and around your home. [Learn more]
condition:
  - condition: template
    value_template: >
      {{ states("sensor.phone_battery") | int(0) > 20 }}

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: