MSco
(MSco)
August 18, 2023, 11:44am
1
I have a Samsung HW-Q70R Soundbar. I have found this repository here, which should be able to integrate my sound bar:
I have already installed Hacs and added piotr’s repository as custom repository. Afterwards I installed it. But how going on from now? How can I add my soundbar as widget to my homescreen?
The documentation shows this example:
media_player:
- platform: smartthings_soundbar
name: Soundbar
api_key: "YOUR API KEY"
device_id: "YOUR DEVICE ID"
max_volume: 30
I have found out my api key and my device id already, but where do I have to paste this code?
In your configuration.yaml file
1 Like
MSco
(MSco)
August 18, 2023, 3:09pm
3
I pasted it into the configuration.yaml and restarted the home assistant server.
But how can I add the soundbar to my dashboard now?
nickrout
(Nick Rout)
August 18, 2023, 9:28pm
4
Are you using the default dashboard ? It should show there.
If you created your own dashboard, add a media card.
1 Like
MSco
(MSco)
August 19, 2023, 5:54am
5
Very well, I got it, the soundbar media card works fine!
Thank you very much!
Is there any way to restore the default home dashboard, so that new devices automatically show up there? I edited the default dashboard some days ago, instead of creating a new one.
nickrout
(Nick Rout)
August 19, 2023, 10:18pm
6
Make a new dashboard and it will be what you want.
2 Likes
Did someone already integrate Samsung HW Q60B?
epeome5
(Epeome5)
November 24, 2023, 12:25pm
8
Hi!
Has someone tested to integrate HW-Q995C with this integration?
2 Likes
Utty88
(Utty88)
December 3, 2023, 10:51am
9
I have integrated my HW-990C which should be the same hardware.
It works quite well.
Unfortunately I cannot reach the API since yesterday which leads to an object without any updates in HA. The downside of cloud based integrations…
epeome5
(Epeome5)
January 27, 2024, 4:58pm
10
Hi,
Thank you!
I have now got my HW-q995C and it seems to work fine as well. Good stuff!
1 Like
royf007
(royf)
February 11, 2024, 5:02pm
11
So, I have 2 HW-990C soundbars. I was able to add one of them and it’s working great.
Does the integration support more than one soundbar? So essentially I have 2 device_id’s . Not sure how to add both.
I seem to have successfully integrated my HW-990C with my API and Device ids. I don’t get an error message from my config.yaml, but the device does not give me any config info except for this. Any tips?
Edit: the screenshot was trimmed to remove the bottom sections on Automations,Scripts, Scenes.
royf007
(royf)
February 13, 2024, 8:55pm
13
So in case anyone is interested, here is how to do it:
media_player:
- platform: smartthings_soundbar
name: Soundbar 1
api_key: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
device_id: "11111111-2222-3333-4444-555555555555"
max_volume: 30
- platform: smartthings_soundbar
name: Soundbar 2
api_key: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
device_id: "yyyyyyyy-yyyy-383f-7c2f-862d94a285ad"
max_volume: 30
1 Like
Edit: I misread an error message I am getting and was thinking it was related to the device ID. Sorry.
How did you find the device ID? Is this something you make up?
I get this error when I click the three dots on the media card on my dashboard.
I’d like to be see my soundbar as a device so I can use it in automations. Is this not possible using this add-on?
Hi did anyone got a Samsung HW-K950 into HA ??
nickrout
(Nick Rout)
March 25, 2024, 9:19am
17
It doesn’t need to be a device to use it in automations.
And this is not an addon.
abaumhof
(Abaumhof)
July 27, 2024, 2:09am
18
does anyone know if you can change the control settings through homeassistant? I would love to change to private rear sound from homeassistant.
nickrout
(Nick Rout)
July 27, 2024, 11:42am
19
Assuming we are still talking about the integration mentioned in post one, then the supported stuff is here
from homeassistant.const import (
CONF_NAME, CONF_API_KEY, CONF_DEVICE_ID
)
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)
DEFAULT_NAME = "SmartThings Soundbar"
CONF_MAX_VOLUME = "max_volume"
SUPPORT_SMARTTHINGS_SOUNDBAR = (
MediaPlayerEntityFeature.PAUSE
| MediaPlayerEntityFeature.VOLUME_STEP
| MediaPlayerEntityFeature.VOLUME_MUTE
| MediaPlayerEntityFeature.VOLUME_SET
| MediaPlayerEntityFeature.SELECT_SOURCE
| MediaPlayerEntityFeature.TURN_OFF
| MediaPlayerEntityFeature.TURN_ON
| MediaPlayerEntityFeature.PLAY
| MediaPlayerEntityFeature.SELECT_SOUND_MODE
)
Hi,
In Music Assistant I can’t find my Samsung Q990B in the list of available media_players when setting the Home Assistant MediaPlayer as a Player Provider. Anyone experienced the same and what is the solution? Thanks.
1 Like