Key
BSH.Common.Setting.PowerState
Description
This setting describes the current power state of the home appliance.
Data type
Enumeration
Possible values
- Off
Key: BSH.Common.EnumType.PowerState.Off
Description: The home appliance switched to off state but can be switched on by writing the value BSH.Common.EnumType.PowerState.On to this setting. - On
Key: BSH.Common.EnumType.PowerState.On
Description: The home appliance switched to on state. You can switch it off by writing the value BSH.Common.EnumType.PowerState.Off or BSH.Common.EnumType.PowerState.Standby depending on what is supported by the appliance. - Stand-by
Key: BSH.Common.EnumType.PowerState.Standby
Description: The home appliance went to standby mode. You can switch it on or off by changing the value of this setting appropriately.
Availability
Off | |||||||||
On | |||||||||
Standby |
Example
GET /api/homeappliances/{haid}/settings/BSH.Common.Setting.PowerState
{
"data": {
"key": "BSH.Common.Setting.PowerState",
"value": "BSH.Common.EnumType.PowerState.On",
"type": "BSH.Common.EnumType.PowerState",
"constraints": {
"allowedvalues": [
"BSH.Common.EnumType.PowerState.On",
"BSH.Common.EnumType.PowerState.Standby"
]
}
}
}