fix: 控制器三相电源380V时,默认开关输出电压改为220。

This commit is contained in:
tianyongbao
2026-06-06 18:36:34 +08:00
parent f02bee1c8d
commit e3bbbc9130

View File

@@ -1043,7 +1043,7 @@ public class IotController extends BaseController {
// 如果是三相380V四线设置输出电压
if (bo.getInputVoltage() == 4) {
for (int i = 1; i <= 4; i++) {
properties.put("Switch" + i + "_volt", 380);
properties.put("Switch" + i + "_volt", 220);
}
}