Hi all,
I have something very basic I thought, but despite all my reading I cannot figure it out
Situation:
HA version 0.113.3 (I have other issues with 0.114, so stay on 113 for now…)
I want to use Cover for shades switch:
I have there:
A command to send for start, stop, pause based on rfxcom service (and this is working fine)
A sensor on the curtain to tell me when it is closed or open… Xiaomi door and window sensor, also working great
I put all together like this:
- platform: template
covers:
curtain_gf_back_right:
device_class: shade
friendly_name: "Curtain Back Right"
value_template: "{{is_state('binary_sensor.door_window_sensor_158d00025193e7', 'on')}}"
open_cover:
service: rfxtrx.send
data:
event: 0A14051800010401030000
close_cover:
service: rfxtrx.send
data:
event: 0A14051700010401020000
stop_cover:
service: rfxtrx.send
data:
event: 0A14051800010401030000
And I get that all the time:
ie Down never enabled, but pause and down working fine…
Of course I tried to set true or false directly to see if their is any issue with my command -> same result
I also tried to set
position_template: 50
or position_template: "50"
or position_template: {{ 50 }}
-> always the same result !
Also I noticed that whatever I do, I always see this in dev screen -> states on my cover:
friendly_name: Curtain Back Right
supported_features: 11
device_class: shade
Please tell me I m not crazy and something else is wrong with my setup ?
Thanks in advance by the way