mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 20:57:51 +00:00
14 lines
250 B
Python
14 lines
250 B
Python
"""Constants for the Devialet integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "devialet"
|
|
MANUFACTURER: Final = "Devialet"
|
|
|
|
SOUND_MODES = {
|
|
"Custom": "custom",
|
|
"Flat": "flat",
|
|
"Night mode": "night mode",
|
|
"Voice": "voice",
|
|
}
|