mirror of
https://github.com/home-assistant/core.git
synced 2026-02-26 21:05:18 +00:00
19 lines
369 B
Python
19 lines
369 B
Python
"""Constants for the Whirlpool Appliances integration."""
|
|
|
|
from whirlpool.backendselector import Brand, Region
|
|
|
|
DOMAIN = "whirlpool"
|
|
CONF_BRAND = "brand"
|
|
|
|
REGIONS_CONF_MAP = {
|
|
"EU": Region.EU,
|
|
"US": Region.US,
|
|
}
|
|
|
|
BRANDS_CONF_MAP = {
|
|
"Whirlpool": Brand.Whirlpool,
|
|
"Maytag": Brand.Maytag,
|
|
"KitchenAid": Brand.KitchenAid,
|
|
"Consul": Brand.Consul,
|
|
}
|