From 69cfa2e7d791f544b160ef33dd2c63636692a622 Mon Sep 17 00:00:00 2001 From: atef Date: Wed, 5 Jun 2024 16:17:21 +0200 Subject: [PATCH] Update config file --- csharp/App/SchneiderMeterDriver/Config.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/csharp/App/SchneiderMeterDriver/Config.cs b/csharp/App/SchneiderMeterDriver/Config.cs index c7dd3ccde..eee15b286 100644 --- a/csharp/App/SchneiderMeterDriver/Config.cs +++ b/csharp/App/SchneiderMeterDriver/Config.cs @@ -8,8 +8,8 @@ public static class Config public const String Version = "1.0"; public const String BusName = "com.victronenergy.grid.Schnieder"; public const Byte ModbusNodeId = 1; - public const String OwnAddress = "10.0.0.1"; - public const String PeerAddress = "10.0.0.2"; + public const String OwnAddress = "192.168.1.246"; + public const String PeerAddress = "192.168.1.82"; //public const String PeerAddress = "127.0.0.1"; public const UInt16 PeerPort = 502; @@ -33,7 +33,7 @@ public static class Config new(s => s.ActivePowerL1, "/Ac/L1/Power", "0 W"), new(s => s.ActivePowerL2, "/Ac/L2/Power", "0 W"), new(s => s.ActivePowerL3, "/Ac/L3/Power", "0 W"), - new(s => (s.ActivePowerL1 + s.ActivePowerL2 + s.ActivePowerL3), "/Ac/Power", "0 W"), + //new(s => (s.ActivePowerL1 + s.ActivePowerL2 + s.ActivePowerL3), "/Ac/Power", "0 W"), // new(s => s.EnergyImportL123, "Ac/Energy/Forward", "0.00 kWh"), // new(s => s.EnergyExportL123, "Ac/Energy/Reverse", "0.00 kWh"), @@ -51,7 +51,7 @@ public static class Config public static VeProperties DefaultProperties => new VeProperties { new("/ProductName" , "Grid meter" ), - new("/CustomName" , "Schneider Professional II"), + new("/CustomName" , "Schneider Professional"), new("/DeviceInstance" , 30), new("/DeviceType" , 72), new("/Mgmt/Connection" , "Modbus TCP"),