From 3593e1a1b58036924912f2980ce7defc64c90fe8 Mon Sep 17 00:00:00 2001 From: bromosky <62068829+bromosky@users.noreply.github.com> Date: Sat, 17 Oct 2020 12:24:21 +0200 Subject: [PATCH] Fix template for seperate valve entity in Homematic (#15280) Old version didn't work, so i asked on Reddit and got an working answer, so here is the change. Mentioned reddit thread: https://www.reddit.com/r/homeassistant/comments/jce8y2/make_valve_postiotion_its_own_entity/ --- source/_integrations/homematic.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/homematic.markdown b/source/_integrations/homematic.markdown index 2dcc9e86193..5c8e151e137 100644 --- a/source/_integrations/homematic.markdown +++ b/source/_integrations/homematic.markdown @@ -210,7 +210,7 @@ sensor: - platform: template sensors: bedroom_valve: - value_template: '{% raw %}{{ state_attr('climate.leq123456', 'Valve') }}{% endraw %}' + value_template: "{% raw %}{{ state_attr('climate.leq123456', 'valve') }}{% endraw %}" entity_id: climate.leq123456 friendly_name: 'Bedroom valve' ```