Standard Instruction Set

Last Updated on : 2022-01-17 06:03:16Copy for LLMView as MarkdownDownload PDF

This topic describes the standard instruction set of refrigerators (bx).

Support sending standard instructions to the device

Code Name Data type Value constraint
switch Switch Boolean {}
mode Working mode Enum {"range":["quick","eco","frozen","fresh","smart","holiday","child_lock"]}
child_lock Child lock switch Boolean {}
eco ECO mode Boolean {}
switch_chiller Switch of refrigerator compartment Boolean {}
switch_variable Switch of convertible compartment Boolean {}
switch_frozen Switch of freezer compartment Boolean {}
cool_temp_set Temperature setting of refrigerator compartment Integer {"unit":"℃","min":-50,"max":20,"scale":0,"step":1}
variable_temp_set Temperature setting of convertible compartment Integer {"unit":"℃","min":-50,"max":20,"scale":0,"step":1}
cold_temp_set Temperature setting of freezer compartment Integer {"unit":"℃","min":-50,"max":20,"scale":0,"step":1}

Example

mode

Working mode.

  • quick: quick freezing mode.
  • eco: ecological energy-saving mode.
  • frozen: frozen mode.
  • fresh: fresh mode.
  • smart: smart mode.
  • holiday: holiday mode.
  • child_lock: child lock.
{
    "commands":[
        {
            "code":"mode",
            "value":"quick"
        }
    ]
}