1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-02 14:42:11 +01:00
Files
core/homeassistant/components/cambridge_audio/icons.json
ichbinsteffen 3e0e807c96 Add control bus mode selector to Cambridge Audio (#139131)
* [CambridgeAudio Integration] Add switch to enable Control Bus Mode

* remove load_fn

* Add import for ControlBusMode

* Add strings for control_bus_mode

* Add icons for control_bus_mode

* Add test case for the select ControlBusMode.Amplifier

* Change the set of icons

* Fix the usage of the wrong property name

* Fix test

* Fix test 2

* add new snapshot

* fix test name

* Fix

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2025-05-09 15:53:37 +02:00

36 lines
751 B
JSON

{
"entity": {
"select": {
"display_brightness": {
"default": "mdi:brightness-7",
"state": {
"bright": "mdi:brightness-7",
"dim": "mdi:brightness-6",
"off": "mdi:brightness-3"
}
},
"audio_output": {
"default": "mdi:audio-input-stereo-minijack"
},
"control_bus_mode": {
"default": "mdi:audio-video-off",
"state": {
"amplifier": "mdi:speaker",
"receiver": "mdi:audio-video"
}
}
},
"switch": {
"pre_amp": {
"default": "mdi:volume-high",
"state": {
"off": "mdi:volume-low"
}
},
"early_update": {
"default": "mdi:update"
}
}
}
}