From 86639e3f2c49f996cab4984dd620bb3784d0e658 Mon Sep 17 00:00:00 2001 From: cgernert Date: Thu, 6 Apr 2023 20:19:24 +0200 Subject: [PATCH] Result must be a Dictionary Otherwise error: "Failed to call service argon40.set_fan_speed. Error rendering data template: Result is not a Dictionary" --- custom_components/argon40/services.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/argon40/services.yaml b/custom_components/argon40/services.yaml index 390fa4f..47552ed 100644 --- a/custom_components/argon40/services.yaml +++ b/custom_components/argon40/services.yaml @@ -4,11 +4,11 @@ set_fan_speed: fields: speed: description: Speed - example: 50 + example: "speed: 50" set_mode: description: Enable or disable the Always ON mode. fields: always_on: description: "true to enable Always ON mode, false to set the default" - example: true \ No newline at end of file + example: "always_on: true"