The bang_olufsen
integration enables control of some of the features of certain Bang & Olufsen devices through Home Assistant.
This integration uses the Mozart open API
Devices that have been tested and should work without any trouble are:
This integration can be added to a Home Assistant installation using HACS by adding https://github.com/bang-olufsen/bang_olufsen-hacs
as a custom repository.
Afterwards, devices can be added to your Home Assistant installation manually by using the UI or by auto-discovery.
This integration adds an array of different useful entities that are generated and added automatically upon setup, customized for the supported features of the device. Some of these features, such as proximity sensor
and home-control
are manually defined based on model name in the code, as they currently can't be determined in any other way.
In order to find Deezer playlists, album URIs and user IDs for Deezer flows, the Deezer website has to be accessed. When navigating to an album, the URL will look something like: https://www.deezer.com/en/album/ALBUM_ID, and this simply needs to be converted to: album:ALBUM_ID
and the same applies to playlist, which have the format: playlist:PLAYLIST_ID
.
Additionally a Deezer user ID can be found at https://www.deezer.com/en/profile/USER_ID by selecting the active user in a web browser.
To find Tidal playlists, album URIs and track IDs, the Tidal website has to be accessed. When navigating to an album, the URL will look something like: https://listen.tidal.com/album/ALBUM_ID/, and this needs to be converted to: album:ALBUM_ID
and the same applies to playlists, which have the format: playlist:PLAYLIST_ID
. Individual tracks can also be found by sharing the track and selecting the Copy track link
method, which should yield a link with this format: https://tidal.com/browse/track/TRACK_ID?u, this can be played by extracting the track id TRACK_ID
.
"raw" WebSocket notifications received from the device are fired as events in Home Assistant. These can be received by listening to bang_olufsen_websocket_event
event types where device_id
is used to differentiate devices.
Event entities are created for each of the physical "buttons" on your device. These buttons usually have their own behaviors, so using them for automations is not always ideal.
Available buttons:
All of these buttons support the following events:
All devices except the Beoconnect Core support device controls.
Event entities are available for each of the compatible keys on the Beoremote One. To trigger these triggers, enter the "Control" or "Light" submenu, and press any of the compatible buttons. Each button press will send a "press" and a "release" event. The functions in these submenus are also supported.
The favourite buttons correspond to the physical favourite buttons on the device.
description: Use the Beoremote One to control living room lights.
mode: single
trigger:
- platform: device
device_id: 234567890abcdef1234567890abcdef1
domain: bang_olufsen
type: Light/Digit1_KeyPress
condition: []
action:
- service: light.toggle
target:
entity_id: light.living_room
description: Set all Bang & Olufsen devices to standby when leaving home.
mode: single
trigger:
- platform: zone
entity_id: person.example
zone: zone.home
event: leave
condition: []
action:
- service: bang_olufsen.beolink_allstandby
data: {}
target:
entity_id: media_player.beosound_balance_32836899
The Bang & Olufsen integration supports different playback types in the media_player.play_media
service: playback from URL, activating a favourite, playback from a local file, playing a radio station, activating a Deezer flow and Deezer/Tidal playlists, albums and tracks. Additionally announce
can be set to True
to play TTS or files as an overlay.
Playing DR P1 from a URL:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: url
media_content_id: http://live-icy.dr.dk/A/A03H.mp3
Activating the first favourite:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: favourite
media_content_id: 1
Playing a local file:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_id: media-source://media_source/local/example.mp3
media_content_type: music
Playing a Deezer flow. Optionally define a Deezer user ID:
service: media_player.play_media
target:
entity_id: media_player.bang_olufsen
data:
media_content_type: deezer
media_content_id: flow
extra:
id: 1234567890
Playing a Deezer playlist. Optionally define starting position for the playlist:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: deezer
media_content_id: playlist:1234567890
extra:
start_from: 123
Playing a Deezer album. Optionally define starting position for the album:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: deezer
media_content_id: album:1234567890
extra:
start_from: 123
Playing a Deezer track:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: deezer
media_content_id: 1234567890
Playing a Tidal playlist. Optionally define starting position for the playlist:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: tidal
media_content_id: playlist:01234567-89ab-cdfe-0123-456789abcdef
extra:
start_from: 123
Playing a Tidal album. Optionally define starting position for the album:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: tidal
media_content_id: album:123456789
extra:
start_from: 123
Playing a Tidal track:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: tidal
media_content_id: 123456789
Playing a B&O Radio station:
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_id: 1234567890123456
media_content_type: radio
Playing a doorbell file with an absolute volume
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: music
media_content_id: media-source://media_source/local/doorbell.mp3
announce: true
extra:
overlay_absolute_volume: 60
Playing an overlay TTS with an offset volume
TTS messages can be quiet, so an offset is useful in this scenario.
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: overlay_tts
media_content_id: This is a test
announce: true
extra:
overlay_offset_volume: 10
Playing a Bang & Olufsen Cloud TTS message with a local language
service: media_player.play_media
target:
entity_id: media_player.beosound_balance_12345678
data:
media_content_type: overlay_tts
media_content_id: Dette er en test
announce: true
extra:
overlay_tts_language: da-dk
NOTE: To easily obtain the media_content_id for a Deezer/Tidal track or B&O Radio station, you can enable the 'Media id' sensor on Mozart device in Home Assistant (disabled by default). Once enabled, start playing the content you wish to activate in a service call - the Media id sensor will then provide the value to be used in the media_content_id field.
The Bang & Olufsen integration additionally supports different custom services
bang_olufsen.beolink_join
Join a Beolink experience.
Service data attribute | Optional | Description |
---|---|---|
beolink_jid |
yes | Manually specify Beolink JID to join. |
bang_olufsen.beolink_expand
Expand current Beolink experience.
Service data attribute | Optional | Description |
---|---|---|
beolink_jids |
no | Specify which Beolink JIDs will join current Beolink experience. |
bang_olufsen.beolink_unexpand
Unexpand from current Beolink experience.
Service data attribute | Optional | Description |
---|---|---|
beolink_jids |
no | Specify which Beolink JIDs will leave from current Beolink experience. |
bang_olufsen.beolink_leave
Leave a Beolink experience.
bang_olufsen.beolink_allstandby
Set all Connected Beolink devices to standby.
bang_olufsen.beolink_set_volume
Set a volume level for all connected Beolink devices.
Service data attribute | Optional | Description |
---|---|---|
volume_level |
no | Specify the volume level. |
bang_olufsen.beolink_leader_command
Send a media_player command to Beolink leader.
Service data attribute | Optional | Description |
---|---|---|
command |
no | Specify the media_player command. |
parameter |
yes | Specify the media_player command's parameter. |
bang_olufsen.reboot
Reboot the device.
A Blueprint for this scenario: https://youtu.be/AiZbrYQ6u48
Select the speaker you want to announce which other product it joins, when performing a long-press on the Play/Pause button.
Default phrase is “Joined {friendly name}”, but this can easily be modified to a different language, e.g: “Lytter med fra {friendly name}”.
Additionally it is possible to enable announcements when using a remote or the Bang & Olufsen app to expand.
Create an automation for each Mozart product that should announce when joining a different room.
A Blueprint to easily set up light control with Beoremote One BT and a Mozart-based product.
Select your Mozart product and the light-bulbs or groups you want to control.
This Blueprint allows for 3 light "zones". See the setup for detailed information on how to control the 3 zones.
To use Light-commands, press “List” on your Beoremote One, navigate down to “Light” and press the center-button. From here, use the described buttons on the remote below to modify brightness.
A Blueprint to easily set up shade control with Beoremote One BT and a Mozart-based product.
Select your Mozart product and the shades you want to control.
This Blueprint allows for 3 "zones". See the setup for detailed information on how to control the 3 zones.
To use Control-commands, press “List” on your Beoremote One, navigate down to “Control” and press the center-button. From here, use the described buttons on the remote below to modify the position.
A Blueprint to set up scene control with Beoremote One BT and a Mozart-based product.
Select your Mozart product in the dropdown menu.
Enter the function (e.g. Light/Func1) you want to trigger the scene with. All functions are described in the Blueprint.
Select the action that should be triggered by the defined function. This can be any service call, e.g. scene.turn_on.
In case you have renamed the scenes on your remote, they will not match the documentation. To find the function name of a renamed button, enable the debug mode toggle. Every time a Light or Control item is activated, a notification with the name of the selected function will show up in the Home Assistant dashboard notification panel. We recommend to disable debug mode as soon as the automation is working as expected.
To activate a scene, press “List” on your Beoremote One BT, navigate down to “Light” or "Control" and press the right-arrow key. Navigate to the function you want to activate and confirm with the center-button.