Howdo.
I’ve recently installed 3 tilt and lift Somfy venetian blinds in the UK, each with an RTS motor and connected via Somfy Tahoma to my smart devices. In Home Assistant (core-2021.5.4, supervisor-2021.05.4, Home Assistant OS 5.13 on HA Blue with the Somfy Integration the blinds appear in my device list under manufacturer ‘Somfy’ and model ‘interior_blind_discrete_orientable’.
Lovelace shows an up/down/stop action button for each blind, and HA exposes the following attributes:
friendly_name: Blind 1
assumed_state: true
supported_features: 11
device_class: blind
I can set the position via open and close operations (eg):
service: cover.close_cover
target:
entity_id: cover.blind_1
but nothing happens when I try to set the position or tilt, with
service: cover.set_cover_position
target:
entity_id: cover.blind_1
data:
position: 50
or
service: cover.set_cover_tilt_position
target:
entity_id: cover.blind_1
data:
tilt_position: 50
The remotes bundled with the blinds allow me to set cover and tilt independently, and expose a ‘MY’ favourite position (which I have as cover closed / tilt open). I’ve seen it suggested in Reddit and here that sending a ‘stop’ signal when the blind is stationary will trigger the MY position, but again I get no response from
service: cover.stop_cover
data: {}
target:
entity_id: cover.blind_1
It might be anecdotal, but it does appear that the blinds lag after I’ve sent a tilt attempt through HA. Whilst they don’t seem to react to the instruction, if I send another via the somfy app afterwards, they wait for about 20 secs before actioning the change. The remotes act immediately still.
Does anyone have any ideas on how I can access the percentage positions? Besides giving me better granular control (which I can already get via remote or Somfy app) it would also let me do more than just fully open or fully close the blinds.
Even if I could just toggle between blinds closed (cover down, tilt close) and the MY position (cover down, tilt open), this would avoid sending the blinds screeching all the way up over 20 seconds or so when all I want to do is see what’s outside.
Lastly, if I had to choose between tilt and cover/uncover channels, I’d far rather HA could control the tilt. Its quicker, quieter, uses less battery, and is more often what I want to do.
I saw GordonGekko’s post about doing this in Homekit, which suggests independent control of both operations were working in HA at the time. Not sure if that was IO or RTS, mind. In the UK, I’ve not found a supplier who will actually tell me which I’ll get until I unpack the boxes.
Thanks for any help you can offer.