5 lines
161 B
Django/Jinja
5 lines
161 B
Django/Jinja
{% macro get_brightness_pct(entity_id) %}
|
|
{% set current = state_attr(entity_id,'brightness') %}
|
|
{{ ((current / 255) * 100) | float | round(2) }}
|
|
{% endmacro %}
|