diff --git a/csharp/Lib/Devices/Trumpf/TruConvertDc/Status/DcDcStatus.cs b/csharp/Lib/Devices/Trumpf/TruConvertDc/Status/DcDcStatus.cs index 3b27cc4a6..c6635a3ea 100644 --- a/csharp/Lib/Devices/Trumpf/TruConvertDc/Status/DcDcStatus.cs +++ b/csharp/Lib/Devices/Trumpf/TruConvertDc/Status/DcDcStatus.cs @@ -27,13 +27,13 @@ public class DcDcStatus Link = DcBus.FromVoltageCurrent ( voltage: _Self.DcLinkVoltage, - current: linkCurrent + current: -linkCurrent // TODO: review sign is reversed ), Battery = DcBus.FromVoltageCurrent ( - voltage: _Self.BatteryVoltage, - current: batteryCurrent - ) + voltage: _Self.BatteryVoltage, + current: -batteryCurrent // TODO: review sign is reversed + ) }; } }