| Name | MQTT Path | Current Reading | Preprocessing | Actions |
|---|---|---|---|---|
| {{ sensor.name }} | {{ sensor.mqtt_path }} |
{% set reading = sensor.latest_reading %} {% if reading is not none %} {{ "%.1f"|format(reading) }}°C {% else %} No data {% endif %} |
{% if sensor.pp_min is not none or sensor.pp_max is not none %}
Range:
{% if sensor.pp_min is not none %}{{ "%.1f"|format(sensor.pp_min) }}{% else %}*{% endif %} -
{% if sensor.pp_max is not none %}{{ "%.1f"|format(sensor.pp_max) }}{% else %}*{% endif %}
{% endif %} Coef: {{ "%.2f"|format(sensor.pp_coef) }} {% if sensor.pp_offset != 0 %} Offset: {{ "%+.2f"|format(sensor.pp_offset) }} {% endif %} {% if sensor.pp_tolerance > 0 %} Tolerance: {{ "%.2f"|format(sensor.pp_tolerance) }} {% endif %} |