Template Sensor¶
The template
sensor platform allows you to create a sensor with templated values
using lambdas.
# Example configuration entry
sensor:
- platform: template
name: "Template Sensor"
lambda: |-
if (id(some_binary_sensor).state) {
return 42.0;
} else {
return 0.0;
}
update_interval: 60s
Possible return values for the lambda:
return <FLOATING_POINT_NUMBER>;
the new value for the sensor.
return NAN;
if the state should be considered invalid to indicate an error (advanced).
return {};
if you don’t want to publish a new state (advanced).
Configuration variables:¶
sensor.template.publish
Action¶
You can also publish a state to a template sensor from elsewhere in your YAML file
with the sensor.template.publish
action.
# Example configuration entry
sensor:
- platform: template
name: "Template Sensor"
id: template_sens
# in some trigger
on_...:
- sensor.template.publish:
id: template_sens
state: 42.0
# Templated
- sensor.template.publish:
id: template_sens
state: !lambda 'return 42.0;'
Configuration options:
id (Required, ID): The ID of the template sensor.
state (Required, float, templatable): The state to publish.
Note
This action can also be written in lambdas:
id(template_sens).publish_state(42.0);