Add Home Connect integration (#29214)
This commit is contained in:
parent
6b9eed5a70
commit
86d410d863
17 changed files with 987 additions and 0 deletions
16
homeassistant/components/home_connect/const.py
Normal file
16
homeassistant/components/home_connect/const.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""Constants for the Home Connect integration."""
|
||||
|
||||
DOMAIN = "home_connect"
|
||||
|
||||
OAUTH2_AUTHORIZE = "https://api.home-connect.com/security/oauth/authorize"
|
||||
OAUTH2_TOKEN = "https://api.home-connect.com/security/oauth/token"
|
||||
|
||||
BSH_POWER_STATE = "BSH.Common.Setting.PowerState"
|
||||
BSH_POWER_ON = "BSH.Common.EnumType.PowerState.On"
|
||||
BSH_POWER_OFF = "BSH.Common.EnumType.PowerState.Off"
|
||||
BSH_POWER_STANDBY = "BSH.Common.EnumType.PowerState.Standby"
|
||||
BSH_ACTIVE_PROGRAM = "BSH.Common.Root.ActiveProgram"
|
||||
BSH_OPERATION_STATE = "BSH.Common.Status.OperationState"
|
||||
BSH_DOOR_STATE = "BSH.Common.Status.DoorState"
|
||||
|
||||
SIGNAL_UPDATE_ENTITIES = "home_connect.update_entities"
|
Loading…
Add table
Add a link
Reference in a new issue