* Add Devialet * Bump Devialet==1.4.0 * Bump Devialet==1.4.1 * Sort manifest and add shorthand * Black formatting * Fix incompatible type * Add type guarding for name * Rename host keywork in tests * Fix Devialet tests * Add update coordinator * Update devialet tests * Create unique_id from entry data
12 lines
249 B
Python
12 lines
249 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",
|
|
}
|