|
|
@@ -1103,7 +1103,7 @@ public class ExecuteTheRecipe { |
|
|
|
public static void TempControl() { |
|
|
|
boolean TempBool = false; |
|
|
|
Object val_wd = ExecuteTheRecipe.getListingValue("当前锅底温度"); |
|
|
|
int dq_wd = (int) val_wd;//当前锅底温度 |
|
|
|
int dq_wd =val_wd==null?0: (int) val_wd;//当前锅底温度 |
|
|
|
if (dq_wd >= (ConfigName.getInstance().MaxTemp - 5)) //如果当前温度大于最大温度限制 断开 |
|
|
|
{ |
|
|
|
TempBool = true;//设置断开 |
|
|
|