Original topic:

HDMI to Art Mode auto switching

(Topic created: a month ago)
396 Views
JJB1
Constellation
Options
QLED and The Frame TVs

I am having trouble with HDMI inputs powered off, but Frame Pro does not auto switch to Art Mode. I was told by Samsung that it would do this prior to my purchase.

I have kids and guests that will gather in an area of my home and turn off the Xbox but leave the TV on. I wanted this TV, my wife wanted artwork. Can I have the best of both worlds without having to manually do this with the remote?

0 Likes
1 Reply
MitchMan20
Asteroid
Options
QLED and The Frame TVs
Short version

Unfortunately The Frame (and Frame Pro) no longer treats a ā€œlost-signalā€ HDMI input as a trigger to jump into Art Mode.
A quick tap of the TV’s power button (or a discrete Art-Mode command issued through SmartThings / a home-automation hub) is still required. Samsung pulled the automatic hand-off in a 2023 firmware update and it hasn’t come back yet, so what the sales rep told you is out of date.

Below are three practical ways you can get as close as possible to the ā€œkids switch the Xbox off → artwork pops upā€ experience:

1. Teach the TV a one-button macro (fastest, no extra gear)

What you doWhat the family doesIn Settings ā–¶ General ā–¶ External Device Manager ā–¶ Input Device Manager add the Xbox as a ā€œuniversal remoteā€ device. Use the on-screen wizard to map the Xbox power STB code plus the Frame’s short power press (Art-Mode toggle).Press the Xbox power button once. The TV receives the macro, sees the first CEC ā€œstand-byā€ for the console, then immediately executes the learned ā€œshort powerā€ IR code and falls into Art Mode.

Pros: Uses the native Samsung remote learning feature, no new hardware.
Cons: If you also turn the TV on with the Xbox this macro will put it straight back into Art Mode; most people solve that by adding a 2-second delay before the TV command or by keeping the physical Samsung remote handy.

2. Let SmartThings do the job (no-code, cloud only)

Recent firmware (2022 sets on version 1622 or newer and all 2023–25 sets) quietly restored the private WebSocket ā€œArt Modeā€ API, which SmartThings now exposes as an Art Mode action in Routines and Scenes .

In the SmartThings app add the Frame to your room (if it isn’t already).

Make sure the TV is on firmware 1622 or later (Settings ā–¶ Support ā–¶ Software Update).

Create a Routine

IF ā–ŗ Xbox smart plug (or HDMI-CEC ā€œXbox is offā€) Changes to Off

THEN ā–ŗ Frame TV ā–ŗ Set Art Mode On.

Give the routine an obvious name (ā€œXbox Off = Artā€).

Because SmartThings can subscribe to CEC power-state events, the routine fires in 2-4 seconds after the console sleeps and nobody has to touch the Samsung remote.

3. Go the DIY / Home-Assistant route (most reliable)

If you already run Home Assistant, Node-RED, or another hub:

Install the samsung-tv-ws-api integration (now updated for the resurrected Art-Mode channel).

Use a simple automation:

trigger: - platform: state entity_id: media_player.xbox to: 'standby' action: - service: media_player.turn_on # Wakes the TV if it had gone to deep-sleep target: { entity_id: media_player.the_frame } - service: samsungtv_ws.art_mode data: { entity_id: media_player.the_frame, mode: 'on' }

This survives firmware updates because it talks to the same WebSocket the SmartThings app uses. Your TV never sees ā€œNo Signalā€ā€”it’s yanked straight into Art.

A few settings worth checking

SettingWhy it mattersSettings ā–¶ General ā–¶ External Device Manager ā–¶ Anynet+ (HDMI-CEC) = OnLets the Xbox broadcast its power-state to the TV.Settings ā–¶ Power & Energy Saving ā–¶ No-Signal Power Off = 15 min (or shorter)As a fallback, turns the panel off completely if no HDMI signal is detected for X min. It will not enter Art Mode, but it keeps the screen from burning in.Art Mode ā–¶ Sleep After = OffPrevents Art Mode from dropping out again once you finally get there.

Remote quick-press vs. long-press: a short tap of Power toggles TV ↔ Art; a 2-second hold is full standby āž” black screen. That distinction is noted in Samsung’s own user guide .

Bottom line

Today the Frame/Frame Pro can’t natively pivot from a dead HDMI source to Art Mode, but with one of the tricks above you can get a seamless hand-off that the kids and guests won’t have to think about. If you’d like help walking through any of the automations just shout—happy to talk you through the details.

0 Likes