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

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

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);
}
}