From 852fc52adc5d95d1c5450a71b3b2759646c8084f Mon Sep 17 00:00:00 2001 From: Tomi Blinnikka Date: Mon, 17 Jun 2019 18:39:01 -0500 Subject: [PATCH] Fix `set_cover_tilt_position` position attribute (#9646) It looks like the correct attribute name is `tilt_position` not `position` for the `cover.set_cover_tilt_position`. Fixed doc and example. --- source/_components/cover.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/cover.markdown b/source/_components/cover.markdown index 90172534114..5eb2bab2e70 100644 --- a/source/_components/cover.markdown +++ b/source/_components/cover.markdown @@ -71,7 +71,7 @@ Set cover tilt position of one or multiple covers. | Service data attribute | Optional | Description | | ---------------------- | -------- | ----------- | | `entity_id` | yes | String or list of strings that point at `entity_id`'s of covers. Else targets all. -| `position` | no | Integer between 0 and 100. +| `tilt_position` | no | Integer between 0 and 100. #### {% linkable_title Automation example %} @@ -84,5 +84,5 @@ automation: - service: cover.set_cover_tilt_position data: entity_id: cover.demo - position: 50 + tilt_position: 50 ```