2023-09-06 18:20:27 +03:00
{
"config" : {
"step" : {
"user" : {
"data" : {
"api_key" : "SmartThings API Token" ,
"device_id" : "Device ID" ,
"device_name" : "Device Name" ,
"device_volume" : "Max Volume (int)"
} ,
"description" : "Bitte gib deine Daten ein." ,
"title" : "Authentifizierung"
Feature: Add more fine grained configuration steps (#28)
> ⚠️ Please read the following carefully:
> This release is a bit special. As "something" on Samsung's side changed,
> it is currently not possible to retrieve the status of "custom capabilities", eg.
> woofer, soundmode, eq, and others. Therefore I decided to give the option to
> disable the entities of these features as the value of these entities is not trustworthy.
> Instead I implemented all of these and more (thanks to @whitebearded) as service calls.
> Have fun using them!
### Added
- Configuration flow options for enable / disable
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "eq" feature
- added `media_player` support for next and previous track
- Service calls for:
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "speaker_level"
- "rear_speaker_mode"
- "space_fit_sound"
- "active_voice_amplifier"
### Changed
- Fixed state, also displaying "playing" and "paused" values
---------
Co-authored-by: Samuel Spagl <samuel.spagl@kobil.com>
2024-06-09 18:13:38 +03:00
} ,
"device" : {
"data" : {
"settings_advanced_audio" : "'Advanced Audio switches' aktivieren (NightMode, BassMode, VoiceEnhancer)" ,
"settings_eq" : "'EQ selector' aktivieren" ,
"settings_soundmode" : "'Soundmode selector' aktivieren" ,
"settings_woofer" : "'Subwoofer Entität' aktivieren"
} ,
"description" : "Einige Soundbars haben verschiedene Featuresets. Wähle bitte aus welche Features von deiner Soundbar supported werden (einsehbar in der SmartThings App)." ,
"title" : "Geräte Einstellungen"
} ,
"reconfigure_confirm" : {
"data" : {
"settings_advanced_audio" : "'Advanced Audio switches' aktivieren (NightMode, BassMode, VoiceEnhancer)" ,
"settings_eq" : "'EQ selector' aktivieren" ,
"settings_soundmode" : "'Soundmode selector' aktivieren" ,
"settings_woofer" : "'Subwoofer Entität' aktivieren" ,
"device_volume" : "Max Volume (int)"
} ,
"description" : "Einige Soundbars haben verschiedene Featuresets. Wähle bitte aus welche Features von deiner Soundbar supported werden (einsehbar in der SmartThings App)." ,
"title" : "Geräte Einstellungen"
}
}
} ,
"selector" : {
"soundmode" : {
"options" : {
"standard" : "Standard" ,
"surround" : "Surround" ,
"game" : "Gaming" ,
"adaptive sound" : "Adaptive Sound"
}
} ,
"speaker_identifier" : {
"options" : {
"Spk_Center" : "Center" ,
"Spk_Side" : "Side" ,
"Spk_Wide" : "Wide" ,
"Spk_Front_Top" : "Front Top" ,
"Spk_Rear" : "Rear" ,
"Spk_Rear_Top" : "Rear Top"
}
} ,
"rear_speaker_mode" : {
"options" : {
"Rear" : "Rear" ,
"Front" : "Front"
}
}
} ,
"services" : {
"select_soundmode" : {
"name" : "SoundMode auswählen" ,
"description" : "Wähle hier zwischen, 'Standard', 'Surround', 'Game' und 'Adaptive Sound'."
} ,
"set_woofer_level" : {
"name" : "Subwoofer Level setzen" ,
"description" : "Verändere die Lautstärke deines Subwoofers." ,
"fields" : {
"level" : {
"name" : "Volume Level" ,
"description" : "Subwoofer Level, von -12 bis +6"
}
}
} ,
"set_night_mode" : {
"name" : "Nachtmodus setzen" ,
"description" : "Schalte den 'Nachtmodus' an / aus." ,
"fields" : {
"enabled" : {
"name" : "An / ausschalten" ,
"description" : "Siehe Name."
}
}
} ,
"set_bass_enhancer" : {
"name" : "Bassmodus setzen" ,
"description" : "Schalte den 'Bassmodus' an / aus." ,
"fields" : {
"enabled" : {
"name" : "An / ausschalten" ,
"description" : "Siehe Name."
}
}
} ,
"set_voice_enhancer" : {
"name" : "Stimmenverbesserer setzen" ,
"description" : "Schalte den 'Stimmenverbesserer' an / aus." ,
"fields" : {
"enabled" : {
"name" : "An / ausschalten" ,
"description" : "Siehe Name."
}
}
} ,
"set_speaker_level" : {
"name" : "Lautsprecher level verändern" ,
2024-10-14 22:46:14 +03:00
"description" : "Verändere die Lautstärke der einzelnen Lautsprecher" ,
"fields" : {
"speaker_identifier" : {
"name" : "Lautsprecher" ,
"description" : "Auszuwählender Lautsprecher"
} ,
"level" : {
"name" : "Lautstärke Level" ,
"description" : "Lautstärke Level zwischen -6 und 6."
}
}
Feature: Add more fine grained configuration steps (#28)
> ⚠️ Please read the following carefully:
> This release is a bit special. As "something" on Samsung's side changed,
> it is currently not possible to retrieve the status of "custom capabilities", eg.
> woofer, soundmode, eq, and others. Therefore I decided to give the option to
> disable the entities of these features as the value of these entities is not trustworthy.
> Instead I implemented all of these and more (thanks to @whitebearded) as service calls.
> Have fun using them!
### Added
- Configuration flow options for enable / disable
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "eq" feature
- added `media_player` support for next and previous track
- Service calls for:
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "speaker_level"
- "rear_speaker_mode"
- "space_fit_sound"
- "active_voice_amplifier"
### Changed
- Fixed state, also displaying "playing" and "paused" values
---------
Co-authored-by: Samuel Spagl <samuel.spagl@kobil.com>
2024-06-09 18:13:38 +03:00
} ,
"set_rear_speaker_mode" : {
"name" : "Modus der hinteren Lautsprecher setzen" ,
2024-10-14 22:46:14 +03:00
"description" : "Nutze deine Rücklautsprecher, als 'Vorder-' oder 'Rücklautsprecher'." ,
"fields" : {
"speaker_mode" : {
"name" : "Lautsprecher Modus" ,
"description" : "Nutze den Lautsprecher als Front oder Rear Speaker."
}
}
Feature: Add more fine grained configuration steps (#28)
> ⚠️ Please read the following carefully:
> This release is a bit special. As "something" on Samsung's side changed,
> it is currently not possible to retrieve the status of "custom capabilities", eg.
> woofer, soundmode, eq, and others. Therefore I decided to give the option to
> disable the entities of these features as the value of these entities is not trustworthy.
> Instead I implemented all of these and more (thanks to @whitebearded) as service calls.
> Have fun using them!
### Added
- Configuration flow options for enable / disable
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "eq" feature
- added `media_player` support for next and previous track
- Service calls for:
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "speaker_level"
- "rear_speaker_mode"
- "space_fit_sound"
- "active_voice_amplifier"
### Changed
- Fixed state, also displaying "playing" and "paused" values
---------
Co-authored-by: Samuel Spagl <samuel.spagl@kobil.com>
2024-06-09 18:13:38 +03:00
} ,
"set_active_voice_amplifier" : {
"name" : "Stimmenverstärker setzen" ,
"description" : "Schalte den 'Stimmenverstärker' an / aus." ,
"fields" : {
"enabled" : {
"name" : "An / ausschalten" ,
"description" : "Siehe Name."
}
}
} ,
"set_space_fit_sound" : {
"name" : "SpaceFitSound setzen" ,
"description" : "Schalte den 'SpaceFitSound' an / aus." ,
"fields" : {
"enabled" : {
"name" : "An / ausschalten" ,
"description" : "Siehe Name."
2023-09-06 18:20:27 +03:00
}
}
}
Feature: Add more fine grained configuration steps (#28)
> ⚠️ Please read the following carefully:
> This release is a bit special. As "something" on Samsung's side changed,
> it is currently not possible to retrieve the status of "custom capabilities", eg.
> woofer, soundmode, eq, and others. Therefore I decided to give the option to
> disable the entities of these features as the value of these entities is not trustworthy.
> Instead I implemented all of these and more (thanks to @whitebearded) as service calls.
> Have fun using them!
### Added
- Configuration flow options for enable / disable
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "eq" feature
- added `media_player` support for next and previous track
- Service calls for:
- "advanced audio" features (NightMode, Bassmode, VoiceEnhancer)
- "woofer" feature
- "soundmode" feature
- "speaker_level"
- "rear_speaker_mode"
- "space_fit_sound"
- "active_voice_amplifier"
### Changed
- Fixed state, also displaying "playing" and "paused" values
---------
Co-authored-by: Samuel Spagl <samuel.spagl@kobil.com>
2024-06-09 18:13:38 +03:00
}
2023-09-06 18:20:27 +03:00
}