fix Config.cs for debug mode
This commit is contained in:
parent
31c725520f
commit
d633564b93
|
@ -34,8 +34,6 @@ internal static class Program
|
|||
[DllImport("libsystemd.so.0")]
|
||||
private static extern Int32 sd_notify(Int32 unsetEnvironment, String state);
|
||||
|
||||
const String batteryTty = "/dev/ttyUSB0";
|
||||
|
||||
private static readonly UnixTimeSpan UpdateInterval = UnixTimeSpan.FromSeconds(2);
|
||||
|
||||
private static readonly IReadOnlyList<Byte> BatteryNodes;
|
||||
|
|
|
@ -49,12 +49,16 @@ public class Config //TODO: let IE choose from config files (Json) and connect t
|
|||
GridSetPoint = 0,
|
||||
BatterySelfDischargePower = 200,
|
||||
HoldSocZone = 1, // TODO: find better name,
|
||||
MinDcBusVoltage = 690,
|
||||
ReferenceDcBusVoltage = 750,
|
||||
MaxDcBusVoltage = 810,
|
||||
LowerDcBusVoltageWindow = 50,
|
||||
ReferenceDcBusVoltageWindow = 750,
|
||||
UpperDcBusVoltageWindow = 50,
|
||||
MinDcLinkVoltageFromAcDc = 690,
|
||||
ReferenceDcLinkVoltageFromAcDc = 750,
|
||||
MaxDcLinkVoltageFromAcDc = 810,
|
||||
LowerDcLinkVoltageFromDc = 50,
|
||||
ReferenceDcLinkVoltageFromDc = 750,
|
||||
UpperDcLinkVoltageFromDc = 50,
|
||||
MaxBatteryChargingCurrent = 210,
|
||||
MaxBatteryDischargingCurrent = 210,
|
||||
MaxChargeBatteryVoltage = 57,
|
||||
MinDischargeBatteryVoltage = 0,
|
||||
Devices = new ()
|
||||
{
|
||||
TruConvertAcIp = new() { Host = "localhost", Port = 5001},
|
||||
|
|
Loading…
Reference in New Issue