From 0b09370874ed24fb8716ad92553d916c029cfc66 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Mon, 16 May 2022 11:15:06 +0200 Subject: [PATCH] Add tilt_position to Motion Blinds service (#22732) Co-authored-by: Franck Nijhof --- source/_integrations/motion_blinds.markdown | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/source/_integrations/motion_blinds.markdown b/source/_integrations/motion_blinds.markdown index 4ab0ab089e5..aceb523a45e 100644 --- a/source/_integrations/motion_blinds.markdown +++ b/source/_integrations/motion_blinds.markdown @@ -121,14 +121,22 @@ Therefore it is always safe to use any of the services in Home Assistant with th ## Service `motion_blinds.set_absolute_position` -For most blinds the `motion_blinds.set_absolute_position` does the same as `cover.set_cover_position` service. -However, for TDBU blinds it will set the absolute position relative to the window itself. +For simple blinds the `motion_blinds.set_absolute_position` does the same as `cover.set_cover_position` service. + +### TDBU blinds + +For TDBU blinds `motion_blinds.set_absolute_position` will set the absolute position relative to the window itself. The `cover.set_cover_position` will set the scaled position relative to the space in which the TDBU blind is allowed to move. +### Tilt capable blinds + +For tilt capable blinds a new position and tilt can be specified and the blind will move to the new position and then adjust its tilt. If the normal `cover.set_cover_position` is issued and immediately after a `cover.set_cover_tilt_position` is issued, the blind will stop moving and start adjusting the tilt before it reaches the intended position. + | Service data attribute | Optional | Description | | ---------------------- | -------- | ------------------------------------------------------------------------------------------------- | | `entity_id` | yes | Name of the motion blind cover entity to control. For example `cover.TopDownBottomUp-Bottom-0001` | | `absolute_position` | no | Absolute position to move to. For example 70 | +| `tilt_position` | yes | Tilt position to move to. For example 50 | | `width` | yes | Optionally specify the width that is covered, only for TDBU Combined entities. For example 30 | ## Troubleshooting