运行分析时间查询修正

parent eea98c25
......@@ -161,7 +161,7 @@ export async function region() {
const AC_CONTROL_PARAMS = {
power: ["on", "off"],
mode: ["制冷", "制热", "送风", "除湿"],
fanSpeed: ["自动", "低", "中", "高"],
fanSpeed: ["自动", "弱", "强", "超强"],
setTemp: "16~30",
roomTemp: "-20~50",
maxTemp: "20~40",
......@@ -313,9 +313,9 @@ const WORK_MODE_MAP: Record<number, string> = {
/** 风速映射:1=高风 2=中风 4=低风 */
const FAN_SPEED_MAP: Record<number, string> = {
1: '',
2: '',
4: '',
1: '超强',
2: '',
4: '',
};
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment