Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Whirlpool Appliances integration."""
2 
3 from whirlpool.backendselector import Brand, Region
4 
5 DOMAIN = "whirlpool"
6 CONF_BRAND = "brand"
7 
8 CONF_REGIONS_MAP = {
9  "EU": Region.EU,
10  "US": Region.US,
11 }
12 
13 CONF_BRANDS_MAP = {
14  "Whirlpool": Brand.Whirlpool,
15  "Maytag": Brand.Maytag,
16  "KitchenAid": Brand.KitchenAid,
17 }