This commit is contained in:
Serge
2024-06-01 11:16:10 +02:00
parent 34161eee7c
commit bf4eae6081
3 changed files with 37 additions and 4 deletions

View File

@@ -109,7 +109,8 @@ public static class AppConfig
break;
}
}
} catch (Exception ex)
}
catch (Exception ex)
{
Logger.WriteLine(ex.Message);
}
@@ -625,6 +626,15 @@ public static class AppConfig
return IsAlly() || Is("stop_ac");
}
public static bool IsChargeLimit80()
{
return ContainsModel("GA403");
}
public static bool IsChargeLimit6080()
{
return true || IsTUF() && !(ContainsModel("FX507Z") || ContainsModel("FA617"));
}
}