fix:物模型枚举类型修改为字符串类型
parent
2824872421
commit
6fb56c3f28
|
@ -998,59 +998,65 @@
|
|||
}
|
||||
},
|
||||
"name": "温度",
|
||||
"accessMode": "rw"
|
||||
"accessMode": "rw",
|
||||
"description": "温度",
|
||||
"unit": "℃"
|
||||
},
|
||||
{
|
||||
"identifier": "swing_modes",
|
||||
"dataType": {
|
||||
"type": "bool",
|
||||
"type": "enum",
|
||||
"specs": {
|
||||
"0": "关",
|
||||
"1": "开"
|
||||
"off": "关",
|
||||
"on": "开"
|
||||
}
|
||||
},
|
||||
"name": "扫风开关",
|
||||
"accessMode": "rw"
|
||||
"accessMode": "rw",
|
||||
"description": "扫风开关"
|
||||
},
|
||||
{
|
||||
"identifier": "modes",
|
||||
"dataType": {
|
||||
"type": "enum",
|
||||
"specs": {
|
||||
"0": "制热",
|
||||
"1": "关闭",
|
||||
"2": "制冷",
|
||||
"3": "送风"
|
||||
"heat": "制热",
|
||||
"off": "关闭",
|
||||
"cool": "制冷",
|
||||
"fan_only": "送风"
|
||||
}
|
||||
},
|
||||
"name": "模式",
|
||||
"accessMode": "rw"
|
||||
"accessMode": "rw",
|
||||
"description": "模式"
|
||||
},
|
||||
{
|
||||
"identifier": "fan_modes",
|
||||
"dataType": {
|
||||
"type": "enum",
|
||||
"specs": {
|
||||
"0": "高",
|
||||
"1": "中",
|
||||
"2": "低"
|
||||
"high": "高",
|
||||
"medium": "中",
|
||||
"low": "低"
|
||||
}
|
||||
},
|
||||
"name": "风模式",
|
||||
"accessMode": "rw"
|
||||
"accessMode": "rw",
|
||||
"description": "风模式"
|
||||
},
|
||||
{
|
||||
"identifier": "presets_modes",
|
||||
"identifier": "preset_modes",
|
||||
"dataType": {
|
||||
"type": "enum",
|
||||
"specs": {
|
||||
"0": "节能",
|
||||
"1": "睡眠",
|
||||
"2": "活动"
|
||||
"eco": "节能",
|
||||
"sleep": "睡眠",
|
||||
"activity": "活动"
|
||||
}
|
||||
},
|
||||
"name": "预设模式",
|
||||
"accessMode": "rw"
|
||||
"accessMode": "rw",
|
||||
"description": "预设模式"
|
||||
}
|
||||
],
|
||||
"services": [
|
||||
|
|
Loading…
Reference in New Issue