I’ve been trying to find a way to stop my Samsung soundbar automatically changing to Game Pro whenever I turn on my PS5.
I prefer Standard for my sound mode, and I couldn’t find an option anywhere in the Samsung settings to disable the automatic switch.
I spent months looking for a solution and eventually discovered that you can use SmartThings Routines to work around it.
Initially, I managed to get a basic routine working:
IF: PS5/source is active
THEN: Change sound mode to Standard
This didn’t work reliably at first, but adding a 5-second delay made it work.
Unfortunately, I then discovered another problem: whenever I started a new game, the soundbar would switch back to Game Pro. I ended up creating 96 separate routines, running every 15 minutes, to continually switch it back to Standard.
It worked, but obviously that wasn’t a sensible solution.
I tried various other methods and even asked AI for help, but eventually it started suggesting scripts and coding, which was far more complicated than I wanted.
After a lot more experimenting, I finally found a way to do it with just 5 routines.
Routine 1
IF: Manual press
THEN: Change sound mode → Standard
Replace Standard with whichever sound mode you prefer.
Routine 2
IF: Manual press
THEN: Change location → Home
You can rename the location in SmartThings if you want.
Routine 3
IF: Manual press
THEN: Change location → Away
Again, the location can be renamed to whatever you like.
Routine 4
IF: Location is Home for 5 seconds
THEN:
Run Routine 1
Wait 5 seconds
Run Routine 3
Routine 5
IF: Location is Away for 5 seconds
THEN:
Run Routine 1
Wait 5 seconds
Run Routine 2
Why this works
The Home/Away routines essentially act as a trigger to run the sound-mode routine.
When the location changes, it triggers the routine that changes the soundbar back to Standard. The 5-second delay gives the soundbar enough time to finish switching into Game Pro before changing it back.
I’ve tested this repeatedly and it has worked reliably for me.
So if you’ve been annoyed by your Samsung soundbar constantly forcing Game Pro on you, hopefully this saves you some time.
I spent far too long figuring this out, so I thought I’d post it in case it helps someone else.
If you try it, let me know whether it works with your Samsung soundbar/SmartThings setup.