I bought Aqara Roller Shutter - Model: RSD-M01 - Roller Shade Driver E1 - I added it without any problems using ConBee 2 - deCONZ - with ZHA integration. It is my second one product of this type, first one working without any problems.
My problem is - my cover appear as “OPEN”. It is open, so everything is ok - I click to set “close” state - state changing to “CLOSING” but it stuck at this state. State dont refresh after cover is closed. If I click on “STOP” button - state changing to “OPEN” - even if it is already CLOSED. It seems device don’t update any states.
Hi,
I tried your solution but got this error message “The system cannot restart because the configuration is not valid: Invalid config for [sensor.template]: [covers] is an invalid option for [sensor.template]. Check: sensor.template->covers. (See ?, line ?).”
and you have also to modify correctly name of entities to match name of your blinds. Still I have the problem, that cover_position (taken from states.number.lumi_lumi_curtain_acn002_analog_output.state) is not updated
So I have also purchased this blind motor but not only do I have the refresh problem but sending the raise lower commands do nothing. Anyone else experiencing this?
So not sure if this will help anyone else and I am not very good with Home Assistant either so I have likely not done this the best way or used the best methods.
I have created toggle input helper (input_boolean_blinds) and created the following automation which is triggered by it. This got around my issue in my previous post in this thread. But by all means if I have made a pigs dinner of this please feel free to say!
alias: Blinds Toggle
description: Toggles the blinds
trigger:
- platform: state
entity_id: input_boolean.blinds
to: 'on'
from: 'off'
- platform: state
entity_id: input_boolean.blinds
to: 'off'
from: 'on'
condition: []
action:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.blinds
state: 'on'
sequence:
- device_id: f41987cce22b52cf3fc1d600afc47e54
domain: number
entity_id: number.lumi_lumi_curtain_acn002_analog_output
type: set_value
value: 100
- conditions:
- condition: state
entity_id: input_boolean.blinds
state: 'off'
sequence:
- device_id: f41987cce22b52cf3fc1d600afc47e54
domain: number
entity_id: number.lumi_lumi_curtain_acn002_analog_output
type: set_value
value: 0
default: []
mode: single
Hoping if others stumble on this post this little entry helps.
Here’s my templated cover. Note that the open, close, and stop do not work, but at least I can now use the custom:slider-entity-row to see and change the shade position:
I am not sure if this is related to ZHA, but calling service set position, or open does not fully open the blinds, they move maybe like 10%. It takes 2-3 attempts to get them to 50%, then 1 attempt to 100%.
Anyone else with the same experience and workaround?