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.
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