Rotate Samsung Frame with Multi View Button problem

I’m trying to Rotate my Samsung Frame by holding the multiview button for 3 seconds through an automation. It does not seem to hold the key however. I get a similar response on the TV like pressing the Multi View button once on the remote. I suspect I’m missing something obvious here as I just started with HA few months now.

This is my current YAML:

service: remote.send_command
data:
  command: KEY_MULTI_VIEW
  hold_secs: 3
target:
  device_id: a73d2810d99b7eed9c243f88a917dc94

Any obvious issues?

Thanks.

Have you found a solution for this?

Not Yet, However I found that I can do it with the GitHub - NickWaterton/samsung-tv-ws-api: Samsung Smart TV WS API wrapper branch.

I’m looking into setting that up to make this work in HA.

If you look into the code, they use a different approach for 2022/2023 .odels as for the 2024 model:

# Rotate Frame TV (with auto rotation mount)
# 2022/2023 version
# await tv.send_command(SendRemoteKey.hold_key("**KEY_MULTI_VIEW**", 3))
# 2024 version (no documentation, but pair the autorotation mount by holding the top left settings button on the remote for 5-10 seconds)
# await tv.send_command(SendRemoteKey.hold_key("**KEY_HOME**", 3))

So the 2024 model uses KEY_HOME for 3 seconds, not KEY_MULTI_VIEW. (after pairing of course)

See file: samsung-tv-ws-api / example / async_remote.py